/*PROGRAM NAME: /cen2k/formatlibrary/fmt_eeo5edu.sas*/ proc format; /********************************************************************************/ /* EDUCATIONAL ATTAINMENT (5) */ /********************************************************************************/ value $eeo5edu '1' = 'Not a high school graduate' '2' = 'High school graduate (including equivalency)' '3' = 'Some college or associate degree' '4' = "Bachelor's degree" '5' = 'Graduate or professional degree'; run;