How do I use 'LIKE' or something similar to find anything that starts
with OCM ? Do I use a WHERE statement or something else?
IF UPCASE(id_role) like 'OCM%'
THEN OUTPUT work.output_ocm;
IF UPCASE(id_role) =: 'OCM' then OUTPUT work.output_ocm;
Note the colon after the equal sign ... equal followed by colon indicates "starts with" ... that you want to find records where UPCASE(ID_ROLE) starts with 'OCM'
IF UPCASE(id_role) =: 'OCM' then OUTPUT work.output_ocm;
Note the colon after the equal sign ... equal followed by colon indicates "starts with" ... that you want to find records where UPCASE(ID_ROLE) starts with 'OCM'
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.