I have a multi-value parameter whose values can be 1,2,3,4.
Is there a way to check if a certain value is selected in this parameter?
I was thinking of setting a binding on visibility to:
IIf(Parameters.Parameter1.Value.Contains(1), True, False)
This way, if value 1 is selected, it's visibility will be true. Otherwise it will be false.
Your help is greatly appreciated.
Thanks,
Phil