Click here to Skip to main content
15,887,596 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hi,
In a Report (Business Intelligence Report Project), I have a dataSet with this query:
select * from order where MonthId in (@MonthId)

In another dataSet I have a query returning all Months from Month Table, and bind it to @MonthId parameter, and the parameter is enable for MultipleValue.
So to this point in Preview mode a combobox is listing the months and user can select one or more month(es) and see the orders at that month by clicking view report button.
No my question is:
How can I show the selected months that user selects, in a textBox in my report?
Actually I want to show the selected parameters texts in a a textBox
Posted

1 solution

I found the answer

=Join(Parameters!monthID.Label,",")
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900