I am new to SSRS reports and have created a report based on a TEXT query:
select * from customers
where residence_state = :state -- oracle, or @state for SQL Server
This generated the parameters and I am able to give a value, such as 'CA' in the 'Report Parameter Properties - Available Values' Window. This works well, however, suppose that I want the :state(or @state) parameter to include 'CA' + 'AZ' + 'WA'. What would be the easiest way to accomplish this?