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;