Hello,
I am trying to create a variable based on the responses of the two other variables in my dataset. For example, I want to create a new dichotomized var (0=no; 1=yes) called new_var using var1 and var2. If one of the responses is yes, or both of them are yes, then it should be categorized as yes. Ohterwise, it should be no.
I tried If-then-else-if statement, but it didnt work. Any suggestion would be greatly appreciated!
Thanks.
Well, I would do something like:
data want; length new_var $5; set have; new_var="No";
if var1="Yes" or var2="Yes" then new_var="Yes"; run;
Seems a bit of a basic question though, are you sure this is what your asking? Could shrink it too:
data want; length new_var $5; set have; new_var=ifc(var1="Yes" or var2="Yes","Yes","No"); run;
Well, I would do something like:
data want; length new_var $5; set have; new_var="No";
if var1="Yes" or var2="Yes" then new_var="Yes"; run;
Seems a bit of a basic question though, are you sure this is what your asking? Could shrink it too:
data want; length new_var $5; set have; new_var=ifc(var1="Yes" or var2="Yes","Yes","No"); run;
Yes! Thank you! I had tried something very similar to what you suggested below, but it didnt' work. Thanks again!
If you have it coded like numbers>
data aaa;
input var1 var2 ;
datalines;
0 0
0 1
1 0
1 1
;
run;
data aaa;
set aaa;
if var1 or var2 then result=1;
else result=0;
run;
If you have it coded in strings be careful with comparing longer strings and upper lower cases
data bbb;
input var1 $3. var2 $3. ;
datalines;
No No
No Yes
YesNo
YesYes
;
run;
data bbb;
set bbb;
if lowcase(strip(var1))='yes' or lowcase(strip(var2))='yes' then result=1;
else result=0;
run;
Otherwise the logic is quite simple...
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.