Forum Discussion
ngiam
Helper I
5 years agoAmending Data for Radar Chart
Hi there, I'm trying to create a radar chart that shows the skill of an employee as rated by others. Category will be the attribute. 1. While the value on the chart should show the self ...
- 5 years ago
Hi ngiam
To display the average score, chnage the aggregation on the value to Average.
Does that solve your problem?
Regards
Phil
PhilipTreacy
Super User
5 years agoHi ngiam
I've created 3 measures to display the info you want.
Self Score = CALCULATE(SUM('Table'[Value]), FILTER('Table', 'Table'[Designation] = "Self"))Superior Score = CALCULATE(SUM('Table'[Value]), FILTER('Table', 'Table'[Designation] = "Superior"))Team Member Score = CALCULATE(AVERAGE('Table'[Value]), FILTER('Table', 'Table'[Designation] = "Team Member"))
Note the Team Member scores shows the average score across team members.
The result is this
You might want to modify the colors for the different measures to suit your tastes.
Regards
Phil
ngiam
Helper I
5 years agoTHANK YOU! You've been a great help.
Seems like I need to learn more about using measures!