In SSRS I have a report parameter that is a multi-select and has a default label of (None) and default value of 0.
In my query I want to set it up so that I can pass in 0 or some other value(s). However, if I pass in 0, I don't want it to filter down the data.
Normally you would add the below clause to your where statement, but I'm not sure if or how this is done with multiple values.
(@Parameter = 0 OR table.column = @Parameter)