I'm creating some dummy variables for analysis, and I need help with a step...
I have four different variables that indicate an ER visit, if coded a specfic value (all different values). So I have this first part:
data want;
set have;
if admsrc='0' then ER=1;
if admtype='1' then ER=1;
if typsvc1='K' then ER=1;
if appttype_r='EROOM' then ER=1;
if ppsprod='01' then ER=1;
run;
but how to I set the rest of the ER values to 0? I tried adding the 'else ER=0' at the end, but that didn't output the values correctly.
Thanks for your assistance!!
Use IF/ELSE IF/ELSE rather than listing individual IF statements.
In a block as below, the first condition that is evaluated as true and then the rest are NOT tested.
Otherwise, each condition is tested and can set the value.
data want;
set have;
if admsrc='0' then ER=1;
else if admtype='1' then ER=1;
else if typsvc1='K' then ER=1;
else if appttype_r='EROOM' then ER=1;
else if ppsprod='01' then ER=1;
else ER=0;
run;
Use IF/ELSE IF/ELSE rather than listing individual IF statements.
In a block as below, the first condition that is evaluated as true and then the rest are NOT tested.
Otherwise, each condition is tested and can set the value.
data want;
set have;
if admsrc='0' then ER=1;
else if admtype='1' then ER=1;
else if typsvc1='K' then ER=1;
else if appttype_r='EROOM' then ER=1;
else if ppsprod='01' then ER=1;
else ER=0;
run;
Or a bit shorter:
data want;
set have;
ER=(admsrc='0' | admtype='1' | typsvc1='K' | appttype_r='EROOM' | ppsprod='01');
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.