Forum Discussion
Issue with Radar chart
- 8 years ago
Hi evertfeyaerts,
In your scenario, you may need to create different measures to calculate results for each Sample ID separately, then show all the measures as Y Axis on the Radar chart.
measure1 = CALCULATE(SUM(Table1[Results]),FILTER(Table1,Table1[Sample ID]="Sample 1"))
measure2 = CALCULATE(SUM(Table1[Results]),FILTER(Table1,Table1[Sample ID]="Sample 2"))
measure3 = CALCULATE(SUM(Table1[Results]),FILTER(Table1,Table1[Sample ID]="Sample 3"))
Here is the sample pbix file for your reference. :smileyhappy:
Regards
Hi evertfeyaerts,
What column are you using as Slicer on your report?
Could you be more precisely with your issue by post some screenshots?
Regards
- evertfeyaerts8 years agoNew Member
Hi v-ljerr-msft
I am sorry, I added the wrong data. see below the correct data with some illustrations. The first picture of de radar chart gives me the data of 1 sample and the 2nd picture shows me a "count" of both data and not illustrated separately.
Thanks
- v-ljerr-msft8 years agoMicrosoft Employee
Hi evertfeyaerts,
In your scenario, you may need to create different measures to calculate results for each Sample ID separately, then show all the measures as Y Axis on the Radar chart.
measure1 = CALCULATE(SUM(Table1[Results]),FILTER(Table1,Table1[Sample ID]="Sample 1"))
measure2 = CALCULATE(SUM(Table1[Results]),FILTER(Table1,Table1[Sample ID]="Sample 2"))
measure3 = CALCULATE(SUM(Table1[Results]),FILTER(Table1,Table1[Sample ID]="Sample 3"))
Here is the sample pbix file for your reference. :smileyhappy:
Regards
- evertfeyaerts8 years agoNew Member
Perfect! It works, thanks v-ljerr-msft