November 7, 2012 at 3:22 am
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!
November 7, 2012 at 8:55 am
=JOIN(Parameters!ParameterName.Value,", ")
November 8, 2012 at 2:22 am
Thanks,
How do I do to write in the next line after ", " ?
Regards!
November 8, 2012 at 3:34 am
vbcrlf!!
And for this example:
= "Selected: " + JOIN(Parameters!ParamName.Value, ";" + vbcrlf)
How do I do to make the text "Selected: " in bold?
Thanks
Regards
November 9, 2012 at 11:15 am
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.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply