We need to check requirements for students exams (e.g. extra time allocated (A), word processor (B), reader (C), and other). Currently the SQL pumps out the information like this:
Student | Exam Requirements
---------------------------
1 | A
1 | B
2 | A
2 | B
2 | C
3 | B
4 | B
4 | C
5 | A
6 | D
7 | E
8 | F
and I need to display it in SSRS like this:
Student | Requirement A | Requirement B | Requirement C | Other requirement
1 | Y | Y | - | -
2 | Y | Y | Y | -
3 | - | Y | - | -
4 | - | Y | Y | -
5 | Y | - | - | -
6 | - | - | - | D
7 | - | - | - | E
8 | - | - | - | F
Currently, as the row group is grouped on the Student, my table only shows a 'Y' in the column for Requirement A. If I group it on requirement then it creates as many rows as the student has requirements.
Thanks, Rob


