any other way to display the selected values from a listbox?
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Please see the attached example.
@jfranken thanks for your reply! but in my case i have the value and display text columns separate since I'm using a dynamic query. In the query i have used the selected values but i am unable to display the text of those values.
Create a computed column in the data set that concatenates the display text and the value text. Use the computed column as the parameter "value" column so that both the display text and value text get passed as the parameter value. Get the parameter value in the report using params["param_name"].value. Parse the result to extract the part you need- either the display text or the value text.
@jfranken Thanks for the help I did something similar through concatenating the results in the data set and displayed that column as a label and got my desired results.