using va 7.3
placed a table object on designer
i have two section filters using text boxes defined as parameters
i have defined a filter using the parameter.
(comment contains 'parameter1'p OR comment contains 'parameter2'p)
the issue is is parameter2 is not coded it seems to select all records from the lasr table anyway because it seems it is selecting all comments that have a blank. i only want to select records based on a valid entry in the parameter text box.
thanks
Hi mhamlett,
You need to identify if parameter2 is missing or not and depending on this execute an expression, see below as example I use UpCase (can also Lowcase) to prevent any mismatching due to upper or lower case used in text(search)field.
IF ( 'Parameter2>'p Missing )
RETURN ( UpCase('comment'n) Contains UpCase('Parameter1'p) )
ELSE ( ( UpCase('comment'n) Contains UpCase('Parameter1'p) )
OR ( UpCase('comment'n) Contains UpCase('Parameter2'p) ) )
hope it helps
thought i tried this MISSING feature, but always got some BOOLEAN error.
ill try again
thanks
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.