I have an SSRS report which consists of approximately 25 columns. There are also three row groups. I'm trying to hide specific columns in the report initially, and only make those columns visible when the row groups are expanded. Here is a screenhot of the report in its collapsed state:
So, when the report is collapsed, I want these four columns hidden: Policy Number, Invoice Number, Transaction Type, Date. These columns should only be visible once the row groups are expanded. See below:
Another view of the expanded report: Expanded Row Groups
I do not have any column groups currently defined, only row groups.
I tried defining a column group using Policy Number as as test, and then set the visibility to an expression: =iif(IsNothing(fields!Current_Policy_Number.Value), False, True)
That expression hid the column, but when expanding the row groups, the column still stayed hidden.
I've been looking everywhere, but all the options I've found don't seem to fit my exact situation.
Any help would be appreciated!