How do you print leading zeroes in a zip code

G

Guest

How can you format a label to print a full 5 digit zip code with a leading
zero. I currently link to an excell spreadsheet for this data and it is
formated there with the access special zip code format and shows correctly in
excell. It appears correctly in the access query, but I loose that leading
zero when I view the label report.
 
K

Ken Snell [MVP]

You need to use a calculated field in the query that is the source for the
labels:

LeadingZip: Format([ZipCodeField], "00000")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top