| Author |
Topic  |
|
|
wafw1971
Yak Posting Veteran
75 Posts |
Posted - 03/12/2013 : 08:20:32
|
On Report Builder 3.0 I have created 6 reports that are hidden unless it is selected in a parameter:
Report Code Visibility string:
=iif(Parameters!WhichReport.Value(0) = "Occupancy", False, True)
But what I want to do is make the Parameter a multiple select parameter so someone can choose two charts instead of 1 or choose all 6 etc but whatever selection is made all other reports need to stay hidden. Can this be done and if so how?
Thanks
Wayne
|
|
|
visakh16
Very Important crosS Applying yaK Herder
India
47157 Posts |
Posted - 03/12/2013 : 13:36:04
|
yep.. use like below
=iif(Instr("," + Join(Parameters!WhichReport.Value,",") + ",",",Occupancy,")>0, False, True)
------------------------------------------------------------------------------------------------------ SQL Server MVP http://visakhm.blogspot.com/
|
 |
|
|
wafw1971
Yak Posting Veteran
75 Posts |
Posted - 03/13/2013 : 05:57:34
|
| Thanks Visakh exactly what I needed as always. |
 |
|
|
visakh16
Very Important crosS Applying yaK Herder
India
47157 Posts |
Posted - 03/13/2013 : 06:39:35
|
welcome
------------------------------------------------------------------------------------------------------ SQL Server MVP http://visakhm.blogspot.com/
|
 |
|
| |
Topic  |
|