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:
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';
Register Today!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.