/*PROGRAM NAME: fmt_sex.sas*/ proc format library=lib; value $sex '1' = 'Male' '2' = 'Female' ; run;