|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: 2 days ago @ 3:26 AM
Points: 156,
Visits: 567
|
|
Hi geniuses,
I want to show which parameters the user as chosen to run the report. For a Non Multivalue parameter it works fine : ="Parameters " + Parameters!param.name.value, but for a multivalue parameter it retrieves an error.
how do I workaround this?
Thansk Regards!
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: 2 days ago @ 1:10 PM
Points: 2,673,
Visits: 2,418
|
|
| =JOIN(Parameters!ParameterName.Value,", ")
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: 2 days ago @ 3:26 AM
Points: 156,
Visits: 567
|
|
Thanks, How do I do to write in the next line after ", " ?
Regards!
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: 2 days ago @ 3:26 AM
Points: 156,
Visits: 567
|
|
vbcrlf!! And for this example:
= "Selected: " + JOIN(Parameters!ParamName.Value, ";" + vbcrlf)
How do I do to make the text "Selected: " in bold?
Thanks Regards
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 1:30 PM
Points: 163,
Visits: 528
|
|
| what i have typically done is put "Selected: " in it's own text box, make that text box bold, then put JOIN(Parameters!ParamName.Value, ";" + vbcrlf) in it's own text box, adjacent to the other one.
|
|
|
|