Hi,
I'm trying to subset the observations that match the criteria
by if statement but my code below doesn't work
I know I can do it by where statement but I also want to do it by if
data new;
set have;
if subject_id ne "%999%";
run;
sample of the data
| subject_id |
| 200018001 |
| 200018002 |
| 200018003 |
| 200018005 |
| 200019999 |
| 200019999 |
| 200028001 |
| 200028002 |
| 200028005 |
| 200029999 |
| 200059999 |
| 200079999 |
| 200089999 |
| 200089999 |
| 200098001 |
| 200098002 |
| 200098003 |
| 200098004 |
| 200099999 |
| 200108001 |
| 200108002 |
| 200108003 |
| 200108004 |
| 200109999 |
% is a wildcard in the WHERE statement with the LIKE operator, not an IF statement.
WHERE statements allow SQL functions, IF statements do not.
where subject_id like '%999%';
The equiavelnt IF statement would be to use FIND() or INDEX() to search for that string.
if find('999', employee_id) > 0 ;
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.