Hi all,
I'm relatively new to Reporting Services so bare with me!
I am trying to us a parameter upon my report. This parameter does not have to be filled in by the user.
In the field that the parameter is running upon there are both NULLS and values. When the user enters nothing into the parameter I want all records to be shown (including NULLS)... However, at the moment I am only getting records with a value, no NULL records are showing up.
I am using the following critera in my query parameter:
Can anyone advise as to how I can get this working?!
My report parameter is set to 'Allow null values' and 'Allow blank values'.
Thanks in advance,
Woody
I'm relatively new to Reporting Services so bare with me!
I am trying to us a parameter upon my report. This parameter does not have to be filled in by the user.
In the field that the parameter is running upon there are both NULLS and values. When the user enters nothing into the parameter I want all records to be shown (including NULLS)... However, at the moment I am only getting records with a value, no NULL records are showing up.
I am using the following critera in my query parameter:
Code:
LIKE '%' + @ContStr + '%' OR @ContStr IS NULL
Can anyone advise as to how I can get this working?!
My report parameter is set to 'Allow null values' and 'Allow blank values'.
Thanks in advance,
Woody