Ok I have added fields to a query like you said to, but when i create a form
from the query, i cant seem to choose from the list of street names in
table1. i dont think i have completed the query accurately? when you say
joining on postcode, how do i do that? thanks
You would not base your Form on the Query (usually, sometimes you
can).
Instead, you would base your Form on the customer table. You could
have a Combo Box bound to the Postcode field, but showing the town and
the streetname as well (I don't know what information you have
available when you're entering data so I don't know what the combo
should show).
For a Report you would create a Query by adding the Customer table and
the Postcodes table to the query grid; join the Postcode field in the
Customer table to the Postcode field in the Postcodes table. Select
the other customer information from the Customer table, and the town
and the streetname from the Postcodes table.
This does imply that, given a postcode, you can uniquely identify that
postcode's streetname and town - that is NOT the case in the US for
five-digit Zip codes but it may be in your region.
John W. Vinson[MVP]