I am trying to write a report query that prompts the user of the report to enter an array of values. I tried using something like:
SELECT class_style_view.Course_Code
FROM class_style_view class_style_view_1.Course_Code
WHERE (class_style_view.Course_Code IN (=@PromptedArray)
I am not sure how I could/should be writing this. I want the prompt to come up for my report and be able to put in something like this: ('41229', '65002', '65435', '64059') so I can query all the items in the table with a variable set of Course_Code values.