Hello all,
My data including variable SEX(Female and Male), variable WHITE(White and Not White), But in my table, I just need Male(N(%)) and White(N(%), how can I write my codes, like this:
if SEX=Female then delete;
if WHITE=Not White then delete;
Are there some problems with this codes? Thanks.
You could consider making it more easily readable with a subsetting-if statement i.e
data want; set have; if white='White' and sex='Male'; run;
/*or Using Where */
where white='White' and sex='Male';
View solution in original post
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Register now!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.