Combine Mailing List

G

Guest

I'm creating a mailing list generated by APN numbers/land ownership. Many
property owners own several parcels. How can I combine the files so only one
mailing address is used?

Fields are as follows:
ID
APN #
Owner
Mailing Address
City
Zip

thx
 
P

pietlinden

I'm creating a mailing list generated by APN numbers/land ownership. Many
property owners own several parcels. How can I combine the files so only one
mailing address is used?

Fields are as follows:
ID
APN #
Owner
Mailing Address
City
Zip

thx

You would have to remove the TractID or whatever identifies the piece
of land, and then you could use a distinct query.

SELECT DISTINCT Owner, [Mailing Address], City, Zip
FROM SomeTable
ORDER BY...
 
G

Guest

Thx!

I'm creating a mailing list generated by APN numbers/land ownership. Many
property owners own several parcels. How can I combine the files so only one
mailing address is used?

Fields are as follows:
ID
APN #
Owner
Mailing Address
City
Zip

thx

You would have to remove the TractID or whatever identifies the piece
of land, and then you could use a distinct query.

SELECT DISTINCT Owner, [Mailing Address], City, Zip
FROM SomeTable
ORDER BY...
 

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