rogerzebra
Technical User
Okay, I decided to start a new thread due to the fact that my issue is a little bit different than Bessebo's on this subject, sorry about that. I'm trying to create a report with multiple parameter choice and being able to use the 'ALL' option. It works fine picking multiple values as long as I'm using a subquery that produces all the column records for column producer but,not the original query that just shows the top 20 producers. Also, I can't get the 'ALL' option to work. Subquery
I would appreciate if someone could give me a helping hand and set me in the correct direction. I added this in the where clause, but it doesn't seem to have any impact -->
As always I appreciate all efforts for anyone that takes the time to look at my problem.
Thanks
Code:
select 'ALL' as producer
union
select producer from tbl...
Code:
and producer in (select slice from @MVP) or 'ALL' in (@ParamMV)
Thanks