That is also a good example of one of the problems with using PROC IMPORT to guess how to read a CSV file. PROC IMPORT will assume that ZIP_CODE should be numeric since it only sees digit strings in that column. For this particular file it causes less issue since none of the zipcodes that are present start with a zero digit.
... View more