Expose Parameters Value selected

  • 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!

  • =JOIN(Parameters!ParameterName.Value,", ")

  • Thanks,

    How do I do to write in the next line after ", " ?

    Regards!

  • vbcrlf!!

    And for this example:

    = "Selected: " + JOIN(Parameters!ParamName.Value, ";" + vbcrlf)

    How do I do to make the text "Selected: " in bold?

    Thanks

    Regards

  • 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