If a user clicks on Select All for a Allow multiple values for parameter Then I need to show All selected
If a user clicks on Select All for a Allow multiple values for parameter Then I need to show All selected right nowI am using Join(Parameters!Name.Label, ", ") so it shows All the parameter values separated by comma.
February 21st, 2011 1:51pm

Hi, As you posted, we can use the Join function in the expression to show all select values of a multi-value parameter. However, if this cannot meet your needs, please eleborate the requirement briefly, and then I will try to assist you to achicve it. For more information about Using Multivalue Parameters, please refer to: http://msdn.microsoft.com/en-us/library/aa337292(v=SQL.100).aspx Thanks, Tony ChainTony Chain [MSFT] MSDN Community Support | Feedback to us Get or Request Code Sample from Microsoft Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Free Windows Admin Tool Kit Click here and download it now
February 21st, 2011 10:08pm

I have a request that when user selects a multivalues/ all in the parameter checkbox then instead of showing all the names, just show "All" as report parameter on the header of the report. ould you please suggest how i could fulfill this requirement. thanks tony for your reply.
February 22nd, 2011 1:22am

Hi, How do you specify the available values of the multi-value parameter? If you specify 5 static available values for parameter P1, we can change the expression in the textbox to =IIf(Parameters!P1.Count=5,"All",Join(Parameters!P1.Value,",")) If you specify the available values to Get values from a query, and the Dataset is DataSet1, Value field is ProductKey, Label field is ProductName, then we can change the expression in textbox to =IIf(Parameters!P1.Count=Count(Fields!ProductKey.Value, "DataSet1"),"All",Join(Parameters!P1.Value,",")) Thanks, Tony ChainTony Chain [MSFT] MSDN Community Support | Feedback to us Get or Request Code Sample from Microsoft Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Free Windows Admin Tool Kit Click here and download it now
February 23rd, 2011 2:31am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics