|
Last updated: 07/03/2009
Some data looks like a number on the surface, but really is not meant to be used that way. Zip codes are one such data type.
When creating a CSV file, a zip code like 01039 will come up in Excel as 1039, which is not what you want.
An easy fix is to enclode the zip code as follows, when generating your CSV:
..."PA",="01039","blah"...
the = sign seems to tell Excel to keep the literal, and not try cleaning it up.
|