I'm trying to create a report that looks like this:
using a select from this table: (fiddler here for query and data)
CREATE TABLE StudentData
(
id int PRIMARY KEY IDENTITY,
name varchar(30),
subject varchar(30),
currentGrade varchar(2),
targetGrade varchar(2),
note1 varchar(100),
note2 varchar(100),
note3 varchar(100),
UNIQUE (id)
)
Basically I want to display each student
on a new page, with their subject
split up into sections, and their grades
and notes
in each of these subject
sections.
I am trying to do this within Business Intelligence Development Studio
Any help with how I would go about that would be great, thanks.