BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Mo2018
Calcite | Level 5

Hello, 

I have a data the has three columns like this:

col1   col2      col3

1        2          F

2      10          P

3       8           P

4      5           F

5     10          P

 

Is there a way to convert the third column to 1 and 0 in SAS. I mean like this

 

col1   col2      col3

1        2          0

2      10          1

3       8           1

4      5           0

5     10          1

 

Thank you

1 ACCEPTED SOLUTION
2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26
data want (drop=old);
  set have (rename=(col3=old));
  col3=ifn(old="F",0,1);
run;

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

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 2 replies
  • 3493 views
  • 0 likes
  • 3 in conversation