I need to create an SSRS report that has columns for almost each day of the month. This results in a report that is too wide for the screen and difficult to print.
I have modified the report to group by week with the days of that week below it. I would like to know how to expand/collapse the weekly columns.
Here is an example of the report:
Week 1 | Week 2 | Week 3
3/1 | 3/2 | 3/3 | 3/8 | 3/9 | 3/10 | 3/16 | 3/17 | 3/19
data| data| data| data| data| data | data | data | data
data| data| data| data| data| data | data | data | data
data| data| data| data| data| data | data | data | data
Can I somehow expand and collapse based on the Week group so that Week 1 expands and collapses Week 2, Week 2 expands and collapses Week 3, etc.? Week 1 would always be visible since it would expand and collapse Week 2.
Is this even possible?
Thanks in advance!
UPDATE: Here are my current groups:
Static <- Parent
-Static <- Child
Week <- Parent
-ID (essentially Date) <- Child
Week is defined as an expression as you suggested: =iif(DatePart("ww",Fields!Date.Value)=53,1,DatePart("ww",Fields!Date.Value))
The static "groups" are a static column that had a group which I deleted so that I could put field names in a static position.
How can I set visibility to toggle one week based on the previous week? If I set visibility for the Week group to toggle by Group1 then I get one toggle on the top Static group that toggles all the Week groups, not individually.
Essentially I want a toggle on Week 9 group that will expand/collapse Week 10... Week 10 should have a toggle that expands/collapses Week 11, etc.