2

Good Afternoon All

I use SSRS all the time and when making reports i normally insert a placeholder at the title, so whenever i write anything in a specific parameter, it will show on the placeholder using the tool tip.

I have now gone onto selecting multiple items on my parameter and the problem that i am getting is that the placeholder can only show one of many i selected, i have been trying to find out how i can use the placeholder to show all items i select, but had no luck at all.

Could you help me in the situation that i am in...

Andrey Morozov
  • 7,839
  • 5
  • 53
  • 75
Sayyam
  • 23
  • 1
  • 3
  • 1
    Do you mean an expression like `=Join(Parameters!MyParameter.Label, ",")`, which displays all selected values from a multi-value parameter as a string? – Ian Preston Nov 08 '13 at 16:53
  • 1
    possible duplicate of [Display Parameter(Multi-value) in Report](http://stackoverflow.com/questions/300339/display-parametermulti-value-in-report) – Tim Abell May 22 '15 at 16:37

1 Answers1

4

Look here

=Join(Parameters!ParameterName.Label, ",")
Andrey Morozov
  • 7,839
  • 5
  • 53
  • 75