Make a list in the textbox based on selection

  • Goal:

    Based on the selection, I want to have them displayed, in the text box, as a list for instance.

    Canada,

    xxxxxx,

    xxxxx,

    xxxxx,

    xxxx,

    xxxx,

    xxx

    etc.

    Not this:

    Canada, xxxxxx, xxxxx, xxxxx, xxxx, xxxx, xxx

    Problem:

    How should I do it?

    Information:

    The data source is SSAS.

  • Hi,

    If you're currently using =join(Parameter,",") to split the parameter into the horizontal list, you could try changing this to =join(Parameter,vbcrlf) to specify the multivalue parameter list should be delimited by a carriage return/line feed rather than a comma.

    So in your case this would be

    =join(Parameters!geo.Label,vbcrlf)

Viewing 2 posts - 1 through 1 (of 1 total)

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