Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have an SSRS report with @Region as a parameter used for filtering values as per the region.

The @Region parameter can take the following values :

Americas
Africa
Asia-Pac

The report works fine if the user chooses Americas or Africa but if the user chooses
Asia-Pac, the report shows no data as the actual value for Asia-Pac is
'Asia','Japan','Australia'. i.e. for the parameter label as Asia-Pac I am setting the value for the parameter as 'Asia','Japan','Australia'.

My query used for populating the dataset is :

select * from myTable where Region in (@Region)

Any help would be much appreciated.
Posted

1 solution

As per your requirement i understood ,

if any check box or all check boxes selected by user the corresponding data should be display.

for this in RC on @region parameter go to properties select check box allow multiple values then your issued will be resolved
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900