Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目标: 根据选择在列表中显示国家/地区的名称。例如,如果我选择澳大利亚和法国,则该国家/地区的名称应显示在文本框中。如果我选择(全选),所有国家的名称都将打印在文本框中。
问题: 我不知道该怎么做。我可以检索一个国家,但不能检索多个国家。
要在文本框中显示以逗号分隔的选定参数字符串,您可以使用如下表达式:
=Join(Parameters!MyParameter.Label, ", ")
由于参数是多值的,它的Label属性将是一个数组,因此Join获取数组并将其转换回单个字符串。
Label
Join