How to use MultiValue Report Parameter in a SQL query
Environment
Product | Progress® Telerik® Reporting |
Report Item | SqlDataSource |
Description
This KB article explains how to use MultiValue Report Parameter in a SQL query.
Solution
A multivalue report parameter's value is evaluated as an array of objects - Using Multivalue Parameters.
-
The value can be used directly in SQL Text commands. For example:
On configuring SqlDataSource component with the above Text command, you can map directly the @SelectedValues SQL parameter to a multivalue report parameter - SqlDataSource Wizard (step 4).
The COALESCE function is used as the multivalue parameter cannot be evaluated directly against NULL.
-
The value has to be processed in order to be used in a SQL StoredProcedure command.
For example, from the report, you can pass a string containing the comma-separated values. The SQL parameter expected by the stored procedure can be an nvarchar. The nvarchar value can be split in the SQL query:
The above is an example of a stored procedure and a function splitting a string by a given character.
Notes
On configuring the SqlDataSource component, you can join the selected values of the multivalue report parameter into a single string by using the Join built-in function:
= If(Parameters.SelectedValues.Value Is Null, Null, Join(',', Parameters.SelectedValues.Value))