New SAS user, editing an existing (very experienced) user's program. Long story short, when I run the code below, the 'Other' category isn't being printed out, it's just being coded as Frequency Missing. How can I get it to be a value in the frequency table? Relevant coding bits: Proc format; VALUE $ZIPFMT ' 48021'='InCounty' OTHER='OutCounty' ; Data Students; Set &student; Format ZipCode $zipfmt.; Title 'T16: Zip Code'; Proc Freq data=Students order=formatted; Tables ZipCode; run; Title; Thanks in advance
... View more