I am building one of the reports in SSRS where parameter values can be either NULL or it can contain NON-NULL value.
Now if the value selected by user is NULL (from dropdownlist) then the SQL Query would be
field-Name IS NULL
If the value selected by user is anything except NULL, the SQL Query would be
field-Name IN (@parameter-values)
I need to put this condition in WHERE Clause using Case-When so that whatever input is given by user, it is handled by the SQL Query and appropriate result is returned. It could be possible that user selects both NULL and Non-NULL values from dropdownlist.
Please guide as to how to put the "case" condition in where clause OR if any other solutions exists
Update:
WHERE @IR_Project_Type =
(
CASE WHEN ([IR Project Type] = NULL) THEN ([IR Project Type] IS NULL)
END
)
// The 'IS NULL' condition throws an error.