Hi,
I have a dataset where I have names in upper case and mixed case. I only want to retain observations with upper case names.
ID Name
1 John Doe1
2 JOHN DOE
3 JOHN DOE1
4 John Doe2
Desired output:
ID Name
2 JOHN DOE
3 JOHN DOE1
Please help.
UPCASE() function
if name ne upcase(name) then delete;
ANYLOWER() function
if anylower(name) > 0 then delete;
UPCASE() function
if name ne upcase(name) then delete;
ANYLOWER() function
if anylower(name) > 0 then delete;
Thank you!
Please mark @Reeza's answer as Accepted.
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 save with the early bird rate—just $795!
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.