I have a table with evaluation scores:
ID, Q1, Q2, Q3, …, Q12
Every Q-field has a score from 0 to 5
Now I want to see in a report per ID the number of 0s 1s 2s 3s 4s and 5s
e.g.
ID 2:
0 = 0
1 = 2
2 = 0
3 = 6
4 = 1
5 = 1
ID 3: …
Please help me