I have the following dataset:
0.806400
0.798166
0.885300
1.000000
0.984850
0.952900
0.951200
0.924050
1.000000
0.630500
0.777000
1.000000
0.949200
0.878400
1.000000
1.000000
0.844800
0.871400
For the sake of simplicity, let's say these are test scores. Each test score belongs to a student.
I would like to put these values in a pie chart on an SSRS report. I would like the pie chart to display them by percentage. Scores will be separated in groups of percentage.
90%-100%
80%-90%
70%-80%
etc.
The pie chart will display these groups as slices of the pie. I will then display the number of occurrences for each section on the pie chart itself.
Using the above dataset, the expected result would be:
90% - 100% 10
80% - 90% 5
70% - 80% 2
60% - 70% 1
Any idea how I would accomplish this?