I am wondering if it is possible to build a report that contains 1 parameter where the user can select a column name, and 1 parameter where they enter a value. Below is an example of a report query that would be used in this scenario:
select Name, City, State
from Customers
where @field = @value
Then if the following is selected for the parameters...
@field = City
@value = Boston
the report would return all customers where City = 'Boston'. I understand that I can create separate parameters for each individual field, but in my actual scenario I am dealing with a much larger number of fields (20+), and am looking for a simpler solution where they can just select a column name from a dropdown.
So is it possible to use this type of parameter in a Telerik report?
select Name, City, State
from Customers
where @field = @value
Then if the following is selected for the parameters...
@field = City
@value = Boston
the report would return all customers where City = 'Boston'. I understand that I can create separate parameters for each individual field, but in my actual scenario I am dealing with a much larger number of fields (20+), and am looking for a simpler solution where they can just select a column name from a dropdown.
So is it possible to use this type of parameter in a Telerik report?