I have a report in VB.Net for which I am using a parameters as a filter. The parameter is set to allow null and blanks. However when I select nothing I am expecting to see all the records, however it shows no records. I am using the following filter expression for a tablix :



Code:
=IIf(IsNothing(Parameters!ReportParameterAliasnaam.Value) ,nothing,Parameters!ReportParameterAliasnaam.Value)
I have also tried setting the default value of the parameter to NULL. I am thinking to the filter based on a query from my dataset. Is that possible?

How can I set the tablix to show all records if the parameter has a NULL value?