Showing posts with label selected. Show all posts
Showing posts with label selected. Show all posts

Monday, March 26, 2012

Parameter Display in Report: Display "Select All" rather than all selections

Dear Anyone,

We have reports in RS that includes a display of selected parameter values in the page footer of the report. When "Select All" is selected in the parameter, all parameter values are displayed in our page footer. We would like to rather display the words "Select All" rather than displaying all of the available selections when select all is selected. Is there a way to do this?

Thanks,
Joseph

If you know the number of parameters in the list, you could compare that number with the count of the parameter collection.
Example:

Set up a text box, and in the expression put:

=iif(Parameters!yourParameter.Count = yourCount, "Select All", Join(Parameters!yourParameter,", "))

That is what I have done. There could be a simpler way, I just haven't stumbled upon it yet! Wink

BobP

|||If only theres a way to determine how many rows or records are returned by the dataset in the parameter.

Parameter Description in Headline

I have the Problem, than I need the Selected Parameter in the Headline.
I have defined another ValueField which I need as the Selections.
But I need only the selected Parameter in one Headline text field.
Thanks for your help.
BraveMake a textbox with the expression:
="Report with parameters: " & Parameters!Parameter1.Value & " and " &
Parameters!Parameter2.Value
"Brave" wrote:
> I have the Problem, than I need the Selected Parameter in the Headline.
> I have defined another ValueField which I need as the Selections.
> But I need only the selected Parameter in one Headline text field.
> Thanks for your help.
> Brave