clamchoda
clamchoda

Reputation: 4991

Unable to hide Group Column RDLC

Before running my report, I give the user options to choose which Columns they would like to see.

I then hide columns by reading and setting boolean parameter for "Column Visibility"

I am able to hide static columns using an expression for "Column Visibility" (Fig 2) as follows: = iif(Parameters!MinorVisibility.Value = "true", false,true)

enter image description here

When I try to hide my Group Columns, "Column Visibility" is disabled as seen in Fig 1. I tried manually setting each cell's visibility property but then I am left with a blank column as seen in Fig 3.

enter image description here

Upvotes: 0

Views: 2401

Answers (1)

InitK
InitK

Reputation: 1291

I think your solution is to remove this column and re-add it as regular column inside group (to the left of your Date column).

Upvotes: 1

Related Questions