Phil said:
Similar to this:
Is there a property I can use to see which value(s) are selected?
If I have selected 1 and 3 in the multi value parameter list...
I would like to say If parameter.value.contains 1 then do this... if contains 2 then do this...
IIf (Parameters.Parameter1.Value.Lenght = 1, 'do this 1', IIF (Parameters.Parameter1.Value.Lenght = 2, 'do this 2', IIf (Parameters.Parameter1.Value.Lenght = 3, 'do this 3', 'then selection is either bigger than 3 or = 0')))
Hope you find it useful!