Hello,
I need to compare the value of two variables, both of them in character format. Like following example:
data X; set Y;
if Surv_city=city;
run;
As you see, I have two variable, Surv_city and city, in dataset Y, and I just want to keep those observations with the same name of Surv_city and city.However, A problem comes up and the result is zero observation. I think the problem occurs because the names of the city are not in the same form of uppercase and lowercase. How can I fixed this problem?
I greatly appreciate any suggestion.
Please try
data X;
set Y;
if upcase(Surv_city)=upcase(city);
run;
Thanks,
Jag
Please try
data X;
set Y;
if upcase(Surv_city)=upcase(city);
run;
Thanks,
Jag
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!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.