Hi Everyone,
I have this problem that looks sooooo simple but can't seem to figure it out, as it gives no errors.
I have this variable called 'specialty'. It consists of numeric values.
I want to extract only the code 1 and 95 from my data set. I used the code below:
data specialty_code;
set master_data;
where specialty=1 and 95;
run;When I submit it, it runs smoothly and gives me the observation number of x. but when I do a quick quality check, it only kept the specialty code 1 and didn't keep any of the code 95. Am I using the where statement wrong? It worked when I used where-and statement for 2 different variables.
Thanks!!
Please try "in" operator
data specialty_code;
set master_data;
where specialty in (1 95);
run;
Please try "in" operator
data specialty_code;
set master_data;
where specialty in (1 95);
run;
Where specialty in (1 95);
For SAS any number other than 0 or missing is equivalent to the logical value TRUE. When specialty is 1, specialty=1 evaluates to TRUE, then TRUE and 95 is equivalent to TRUE and TRUE which evaluates to TRUE. When specialty is 95, or anything other than 1, you end up with the equivalent of FALSE and TRUE, which is FALSE. The proper syntax is:
data specialty_code;
set master_data;
where specialty=1 or specialty=95;
run;
/* Or */
data specialty_code;
set master_data;
where specialty in (1, 95);
run;
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.