/* Extended Missouri county codes, assigning labels to special pseudo-county codes as used by Missouri Economic Research and Info Center (MERIC). Codes 555 and 600 added for use with taxsales files 1-06. */ PROC FORMAT DDNAME=library ; VALUE $mocntye '29555','555'='Misc Locations in MO' '29600','600'='Outside Missouri' '29995','995'='In-State No Fixed Location' '29996','996'='Overseas' '29998','998'='Out-of-State' '29999','999'='Unknown' other=[$mocnty]; /* Sample usage: %libname(empwage); proc freq data=empwage.cew2001(keep=county); format county $mocntye.; run; */