/*PROGRAM NAME: fmt_eeo1.sas*/ proc format; /******************************************************************************/ /* EEO-1 Job Categories and Titles (EEO-1 (9)) */ /******************************************************************************/ value $eeo1fm '01' = 'Officials and Managers' '02' = 'Professionals' '03' = 'Technicians' '04' = 'Sales Workers' '05' = 'Administrative Support Workers' '06' = 'Craft Workers' '07' = 'Operatives' '08' = 'Laborers and Helpers' '09' = 'Service Workers' '10' = 'Unemployed, No Civilian Work Experience Since 1995'; run;