This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
How can display dynamic columns based on select columns from dropdownlist like below print screen ?
Here, We can select the required Column that we want:
Hi,
Set the Column Visibility property for each column on the report,
Sample expression:
=IIF(InStr(Join(Parameters!ColumnSelection.Value, ","),"Col1")>0 ,False,True)
http://social.technet.microsoft.com/wiki/contents/articles/19333.ssrs-how-to-set-column-visibility-property-for-many-columns-based-on-parameter-s-value.aspx
http://www.allaboutmssql.com/2013/01/ssrs-ismissing-visibility-function.html
sathya - www.allaboutmssql.com ** Mark as answered if my post solved your problem and Vote as helpful if my post was useful **.