I've created a multivalue parameter with only 5 available values in the columnComment_Type of my dataset. In my table, I've setup the following filter:
Expression is =True
Operator is =
Value is =Iif(InStr(Join(Parameters!commenttype.Value,","), Fields!Comment_Type.Value)=0,True,False)
Basically what I'm trying to achieve is that if Fields!Comment_Type.Value is NOT one of the available values in Parameters!commenttype.Value then display the result, otherwise do not display the result.
Do I have the expression, operator, or value wrong? My resultset isn't what it is supposed to be. Any help is appreciated.