Designers
petr_mlcoch
—
2016-06-22T10:33:53-04:00 —
#1
Hi,
I have 2 teams. One have 5 members , second have 4 members.
All players can get teampoints from actions.
I would like to build leaderboard based average teampoints per member. Using formula close to ( SUM(teampoints, all members of team)/ COUNT(members of team)) .
So team with 100 members can be compared to team with 5 members.
Is there way how to achieve it?
Petr
khs
—
2016-07-06T09:51:54-04:00 —
#2
It's not possible out of the box, but it can be done. You can create a separate metric, say "Team Average Points", which is updated ONLY by an action (name it something like "update team average leaderboard") which is triggered by the application. Whenever a player does a task which changes the team points, you can calculate the Team Average Points (team points / total member count) and pass it as a variable to the aforementioned action.
petr_mlcoch
—
2016-07-07T03:24:48-04:00 —
#3
Thank you, it is usable solution. I will try it.