I've set up a report with a multi-valued parameter. The dataset is essentially
select 'Abc' as field1
Union all
select 'lmnop'
union all
select 'xyz'
order by Field1
Available values - Label and Value are both set to Field1 Default values - Value is set to Field1
I would expect only the 'Abc' to be selected by default and the rest unselected. But instead, I'm seeing all of them selected. This works as expected with single valued parameters.
SSRS 2008 R2