I have some location codes that may be 3 characters or 5 characters. Regardless of how many characters, I need a filter set that will return all location codes that begin with the letter "Y". I've tried 'Contains Y%', with no results. Can someone suggest the correct syntax?
Thanks, in advance, for your help!
Rita Yee
Project Engineer, FedEx Express
Try:
upcase(substr(locationCode,1,1)) = 'Y'
Use it in an advance filter 🙂
//Fredrik
In what context are you asking? This will work in some contexts:
code =: 'Y'
Try:
upcase(substr(locationCode,1,1)) = 'Y'
Use it in an advance filter 🙂
//Fredrik
Worked perfectly!! Thanks so much!
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.