I have a SSRS multivalue parameter called @prmEstate which is a list of dates. The dataset to populate @prmEstate is
select distinct [forecast finish]
from table1
The [forecast finish] column contains some blank values. I want to be able to pass in or select the blank value at runtime so I can see only records have a blank [forecast finish] or include the blank value records in the select all records. The line in my main dataset is
SELECT COL1, COL2 FROM TABLE2
WHERE ([forecast finish] IN @prmEstate)
Any assistance is appreciated.