I've created a parameter field caled RNumber. When running the report I'd like to be able to either enter a specific number and that record is displayed, or enter a symbol and have all records displayed. I've used the following following formula (RNumberSelect) for other parameters and it worked fine. (They are strings, not numbers.)
IF {?RNumber} = "%" THEN
"*"
ELSE
{?RNumber}
In the selection criteria I have the following
{vw_name.RNumber} like {@RNumberSelect}
This isn't working for this parameter though. The only difference between this and the others is that this is a number, the others are strings. Any suggestions?
IF {?RNumber} = "%" THEN
"*"
ELSE
{?RNumber}
In the selection criteria I have the following
{vw_name.RNumber} like {@RNumberSelect}
This isn't working for this parameter though. The only difference between this and the others is that this is a number, the others are strings. Any suggestions?