I run the following sas code,but I cannot get the correct answer. Anybody
can help me?
data test3;
input employee_name $1-4;
if employee_name='Sue' then input age 7-8;
else input idnum 10-11;
datalines;
Ruth 39 11
Jose 32 22
Sue 30 33
John 40 44
;
run;
proc print data=test3;
run;