libname herc 'S:\Courses\stat-renaes\Stat404'; * Setting bonus based on country; * 1st IF-THEN/ELSE; data bonus; set herc.sales; if country='US' then Bonus=500; else if country='AU' then Bonus=300; run; proc print data=bonus; var First_Name Last_Name Country Bonus; run; * 2nd IF-THEN/ELSE; data bonus; set herc.sales; if country='US' then Bonus=500; else Bonus=300; run; proc print data=bonus; var First_Name Last_Name Country Bonus; run; * Setting bonus based on country and signifying occurrence; * IF-THEN DO/ELSE DO statements; data bonus; if country='US' then do; Bonus=500; Freq='Once a Year'; end; else if country='AU' then do; Bonus=300; Freq='Twice a Year'; end; run; proc print data=bonus; var First_Name Last_Name Country Bonus; run;