I need to have an optional parameter or a parameter that's default value is null.
I want to use a dropdown list for a report, the list is getting it's values from another dataset. I have selected the option to allow NULL values. I have tried setting the default value to null and all the other settings available. Is there some way to make this dropdown optional or have the default value as NULL?
I've searched and found this question that was asked and comes close but does not answer the optional/null question...In the query for the report I am making sure the value is either NULL or not: http://stackoverflow.com/questions/1877191/sql-server-reporting-services-set-default-value-for-multi-value-report-parameter
(@assignedTo is null or @assignedTo = [User].UserInfo.FirstName +' '+ [User].UserInfo.LastName)