BookmarkSubscribeRSS Feed
chimei0403
Obsidian | Level 7

Hi Sas Users,

I need a quick advice.

How should I use the SAS code to replace the value of gender2 to gender variable if the information in gender variable is missing.

Thank you!

data have;
format id $1. gender $1. gender2 $1.;
input @1 ID
@ 3 GENDER
@ 6 GENDER2;
DATALINES;
1 f .
2 . m
3 m .
4 . f
;
run;
2 REPLIES 2
PaigeMiller
Diamond | Level 26
data want;
    set have;
    gender=coalescec(gender,gender2);
run;
--
Paige Miller
chimei0403
Obsidian | Level 7
Thank you soooo much!!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1117 views
  • 0 likes
  • 2 in conversation