For SSRS in Visual Studio 2008, how can I make a variable accept multiple values as well as a single value?
问题 I'm making a report with Visual Studio 2008, pulling the info from a table in a database. Let's say I just want to show the Type of employee (which is represented by an int , say 1-10) and their Name . Then my dataset would be this query: SELECT Type, Name FROM Employees WHERE Type = @Type This is SSRS, so I do not need to declare or set the variable (correct me if I'm wrong). When I run the report, it will give me an option to type in an int for the Type and it will create the corresponding