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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 3145 views
  • 0 likes
  • 3 in conversation