Hide table column dynamically in SSRS sql server

Ashif Avatar

For hiding column in ssrs there is a feature of hidecolumn , in rdlc file.
for dynamic fields are coming from stored procedure those fields are missing , it can be hide according to below process .
Right click on Column attribute and select Hide column , then use the below rule.

=IIF(Fields!incident_IncidentId.IsMissing,true,false)

Leave a Reply

Your email address will not be published. Required fields are marked *