Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ssrs
Starting Member
1 Post |
Posted - 2012-04-03 : 13:59:34
|
hi
i want to show column based on user selection.i have 5 column.
how to do it using multivalued parameter |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-04-04 : 20:23:07
|
use expression for setting Hidden property of column
something like
=IIF(Instr("," + Join(Parameters!Param.label,",") + ",",",Your Value,")>0, False,True)
------------------------------------------------------------------------------------------------------ SQL Server MVP http://visakhm.blogspot.com/
|
 |
|
|
|
|