Hi,
If you want the following output ..
capacity airplanetype staff
150 Large 10
then whats wrong with this code...
data work.test;
capacity = 150;
if 100 le capacity le 200 then
airplanetype = 'Large' and staff = 10;
else airplanetype = 'Small' and staff = 5;
run;
Thanks
If you want the following output ..
capacity airplanetype staff
150 Large 10
then whats wrong with this code...
data work.test;
capacity = 150;
if 100 le capacity le 200 then
airplanetype = 'Large' and staff = 10;
else airplanetype = 'Small' and staff = 5;
run;
Thanks