Reputation: 4854
I was wondering if there was a way to create a directory listing report in ssrs and if so, how would i go about creating it. I'm mostly familiar with creating tabular and some somewhat complex reports, but nothing like this; so any help would be extremely useful.
Here's a sample of how the report might look.
Thanks!
Addendum: The content on each page needs to be grouped by Department & Sub-Department. I made a mistake on the sample report; where it says Department Subtitle it should say sub-department.
Upvotes: 1
Views: 319
Reputation: 438
I think your problem is an addition to this question here.
I did a simple test that imitates your situation. Here is how to do it:
Upvotes: 1
Reputation: 891
Here's one way I've seen it done.
For a 3 column look, create 3 tables/list with the same dataset and set visibility for details group to:
=IIF(ROWNUMBER("YourDataSet") mod 3=1,FALSE,TRUE) <--Table1
=IIF(ROWNUMBER("YourDataSet") mod 3=2,FALSE,TRUE) <--Table2
=IIF(ROWNUMBER("YourDataSet") mod 3=0,FALSE,TRUE) <--Table3
Upvotes: 1