Text Box Heading Not Working with Multivalue

  • I have the following expression in my textbox:

    ="Project:" & " " & Parameters!Job_Number.Value & " " & Fields!WS_Job_Name.Value &

    vbcrlf & "Manager ID:" & " " & Fields!WS_Manager_ID.Value & " " & "Range:" & " " & Parameters!StartDate.Value & " " & "to" & " " & Parameters!EndDate.Value

    When I change my Job_Number parameter to multivalue the textbox shows as #Error.

    Anyone have any ideas?

    Thanks

  • Because after changing Job_Number parameter to multivalue, you will have multiple values for Job_Number

    that text box can not display.

  • How do I fix that expression?

  • To display the values of a multi-value parameter, you need to use JOIN. For example, to display the values for the Job_Number separated by a comma, try this:

    Join(Parameters!Job_Number.Value,", ")

    Hope that helps,

    -Marianne

  • Thanks for your help.

    I changed Parameters! to Value! and that fixed the problem.

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply