How to use Null value in the Multi value parameter in SSRS.
- SSRS doesn't allow null values to enter through the dataset or pass through a parameter.So we can use alternate process to achieve the above condition.
- Firstly we need to create a dataset converting the input NULL to string(it can be any string) for assigning it to the parameter values. PFB snip
- Next create a dataset with a multi value parameter, it has to have the condition where the null value present in the database is converted to string and compared with parameter values, PFB snip.
Comments
Post a Comment