How to hide columns in rdlc file at run time
-
Hi, I am completely new to generating reports in SSRS in ASP.NET and C#.I have generated a report successfully. Now what I need is I dont dont want to show any columns or fields in the report when there is no data. The requirement is very urgent. So I request a quick reply from any one who knows solution to this.
-
Hi, I am completely new to generating reports in SSRS in ASP.NET and C#.I have generated a report successfully. Now what I need is I dont dont want to show any columns or fields in the report when there is no data. The requirement is very urgent. So I request a quick reply from any one who knows solution to this.
-
select column and go to properties, then select visibility and put in Hidden =IIF(Fields!NameOfColumn.Value=0,True, False)
There is no "COLUMN" visibility property. There is a row visibitly property and there is a cell specific visibility property. Not for COLUMN!
-
There is no "COLUMN" visibility property. There is a row visibitly property and there is a cell specific visibility property. Not for COLUMN!
If you select column, go to properties, select visibility property and underneath Visibility Select Hidden and select Expression from drop down list box.