/*PROGRAM NAME: fmt_st_loc.sas*/ proc format; /******************************************************************************/ /* State and Local Government Job Categories */ /******************************************************************************/ value $stloc '01' = 'Officials and Managers' '02' = 'Professional' '03' = 'Technicians' '04' = 'Protective Service: Sworn' '05' = 'Protective Service: Non-Sworn' '06' = 'Administrative Support' '07' = 'Skilled Craft' '08' = 'Service Maintenance' '09' = 'Unemployed, No Civilian Work Experience Since 1995'; run;