Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 Reporting Services Development
 Multivalued Parameter

Author  Topic 

1sabine8
Posting Yak Master

130 Posts

Posted - 2008-08-28 : 01:43:04
Hi,
I have a multivalued parameter.
I need to check if the user chose "Select All". How is it feasible.
Thanks in advance

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-08-28 : 10:30:40
put a textbox on your report body and give expression
=Parameters!yourmultivaluedparameter.value

and check what value it displays when you give select All. that will be value passed internally. Use a condition expression to check if Parameters!yourmultivaluedparameter.value=obtainedvalue to determine if user selected SelectAll
Go to Top of Page

1sabine8
Posting Yak Master

130 Posts

Posted - 2008-09-02 : 08:16:44
I already tried it.
It returns #Error. So how can i fix it?
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-09-02 : 09:39:19
quote:
Originally posted by 1sabine8

I already tried it.
It returns #Error. So how can i fix it?


what about this?

=join(Parameters!yourmultivaluedparameter.value,",")
Go to Top of Page
   

- Advertisement -