I want to select all female students in all grades except grade 3 to run a proc tabulate, but I am getting this error . Is there a solution to this without listing grade 1,2,4,5,6,and 7 in the "where" statement. Thank you.
proc tabulate data= new;
where sex=2 and grade ne 2;
ERROR: WHERE clause operator requires compatible variables.
One or both of your variables is character, so either
where sex='2' and grade ne 3;
or
where sex=2 and grade ne '3';
or
where sex='2' and grade ne '3';
Updates:
I want to select all female students in all grades except grade 3 to run a proc tabulate, but I am getting this error . Is there a solution to this without listing grade 1,2,4,5,6,and 7 in the "where" statement. Thank you.
proc tabulate data= new;
where sex=2 and grade ne 3;
ERROR: WHERE clause operator requires compatible variables.
One or both of your variables is character, so either
where sex='2' and grade ne 3;
or
where sex=2 and grade ne '3';
or
where sex='2' and grade ne '3';
Character values need quotes
To test for multiple grades use IN e.g. Grades in (2 3 4 5 6 7). If character all the grade values should be enclosed in quotes.
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.