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
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.