I had recently posted a question about how to handle NULL values in SQL Server Reporting Services. The question is located at Handle NULL values in SQL Server Reporting Services.
Applying WHERE @MyParam=MyCol OR @MyParam IS NULL faces a problem, which is if I select single NON-NULL value (from the dropdownlist and pass this as in SQL Server), this also brings the NULL value records. It should only bring the Non NULL value's records.
What should be done to avoid NULL records, if NON-NULL records are selected?