Suppose I have a Report Parameters drop down with the colors:
Available Values/Non Queried
Label Value
------- ----
Red 'Red'
Black 'Black'
White 'White'
Blue 'Blue'
Green 'Green'
The user checks the Red, Blue and Green
What is being passed to the report?. Is the string "'Red', 'White', 'Blue'" passed to the report...?
Actually. My report stored procedure sp_rpt_getcolors( ) is expecting a parameter @colors varchar(500);
I have a select @colors to display what's being passed and I get blank.
Thanks,
rfalagan