I am working on SSRS Reporting Services with 2008R2.
ISSUE: I have two tables Orders and Customers.
I join both the tables and get the sufficient data.
My issue is how to pass Customername as optional parameter. I need to take this value from a query (I mean to display customer name in drop down).
To do this I have checked allow nulls as true for the parameter name: Customer name. But while generating the report it asks to select customer name.
I have also tried with:
Specified the filter condition of the dataset as follows:
Expression:
=IIF(Parameters!CustomerName.Value is nothing or (Fields!CustomerName.Value =Parameters!CustomerName.Value),true,false)
(Select Boolean in the second drop-down list)
Operator: =
Value: true
NULL(i.e. all Customers) to be selected by default? Is the report running but your filter not working? - Ian Preston