Tutorial by Examples

data table; set table; length state_full $8; if state = 'KS' then state_full = 'Kansas'; else if state = 'CO' then state_full = 'Colorado'; else state_full = 'Other'; run;

Page 1 of 1