Let's say I have a simple query that will return products name, ID, price
SELECT pname, pID, price FROM products
When I display the results in SSRS the user will (without entering any parameters) see something like:
Product Name | ID | Price
xyz 1 $10.00
. . .
. . .
.zzz 10 $4,000.00
How can I filter my results once they are displayed? For instance, Out of the results the user wants to see only the products where price is between $10 and $3000?
-Alan