Zip Code Bulk Mail Sort

G

Guest

I have city state zip in a limited list in a combo box which makes date entry
easier and faster. I have stripped the zip on the form with =Right([zip],5)
Can I use this somehow because for bulk mail in the label wizard I need to
be able to sort by zip code?
 
J

John Spencer

In a query you can generate the ZIP code with your expression as a separate
field and sort by that

In a report you can either generate the value in a query and then sort by
that using the report's sorting and grouping dialog. Or enter the formula
in the sorting and grouping dialog of the report (found under the menu View:
Sorting and Grouping)

Field/Expression
=Right([Zip],5)

--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..
 
G

Guest

Thanks. It worked right away.
--
rjk


John Spencer said:
In a query you can generate the ZIP code with your expression as a separate
field and sort by that

In a report you can either generate the value in a query and then sort by
that using the report's sorting and grouping dialog. Or enter the formula
in the sorting and grouping dialog of the report (found under the menu View:
Sorting and Grouping)

Field/Expression
=Right([Zip],5)

--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..

Walmondo Kelly said:
I have city state zip in a limited list in a combo box which makes date
entry
easier and faster. I have stripped the zip on the form with
=Right([zip],5)
Can I use this somehow because for bulk mail in the label wizard I need to
be able to sort by zip code?
 

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