Consider the following data,
| Roll Number | Performance |
| 1 | Good |
| 2 | Average |
| 3 | Bad |
| 4 | Average |
| 5 | Good |
| 6 | Good |
| 7 | Bad |
| 8 | Bad |
| 9 | Average |
| 10 | Average |
Condition:
I want to group the data according to the performance
e.g.: All the good in one, bad in one and Average in one like the below result which i wanted
| Performance | Roll No |
| Good | 1 5 6 |
| Average | 2 4 9 10 |
| Bad | 3 7 8 |
Please suggest some workflow.
Thanks