change the name address only once

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I set up the access program to change the name address only once when
it is used on several different records and tables?
 
This sounds like a one-to-many relationship. You should store the "customer
number" or "person number" in your main table. In a separate related table,
you store one record for each person including their number, the name,
address, etc. Then you can fix the person table without the need to change
your detail table.


TblDetail
CustNumber (related to TblCustomers)
Date
etc.

TblCustomers
CustNumber
CustLastName
CustFirstName
CustAddress1
CustAddress2
CustCity
CustState
CustZIP
CustPhone
etc.
 
How do I set up the access program to change the name address only once when
it is used on several different records and tables?

If you have the name and address stored in multiple tables, you've
made a mistake in your initial table design. Relational tables use the
"Grandmother's Pantry Principle": "A place - ONE place! - for
everything, everything in its place".

Store the name and address, *once*, and then use Queries to link to
the stored information (using a PersonID field for example).


John W. Vinson[MVP]
 

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

Back
Top