Reputation: 13
I have a report which requests a parameter value for customerNo
. The report should return all values by default.
Once the user provides a single customerNo
value, then it should display the specified record only.
I've found solutions for Multiple selection, but couldn't find for single text box entry. Thanks guys..
Upvotes: 1
Views: 747
Reputation: 17703
Change the report parameter to allow NULL
:
Modify the WHERE
clause of the data set to check NULL
parameter value:
When the report is run, users can check NULL
for all rows:
Or rows matching a specific value:
Upvotes: 1