Using SSRS to display a directory of people.
My stored proc returns what you might expect, name, address, phone, etc., one person per row.
From the report side, I need to put in a grid type format, 3 people per row.
dataset:
name1, addy1, phone1
name2, addy2, phone2
...
name500, addy500, phone500
presentation:
name1 name2 name3
addy1 addy2 addy3
phone1 phone2 phone3
Can this be tackled in SSRS? What concepts do I need to learn to make it so?