the solution is to use one table to store customer records. add a field for
Terminated or Inactive - a Yes/No field will do, though i would more likely
use a Date/Time field as that more specific data often comes in handy. it's
easy to query for active (or inactive) records only - and re-instating a
customer can be as easy as deleting the date in the field, or changing a Yes
to a No.
hth
If the customer already exists, why do you want to add him to your table
again?
UpRider
- Mostrar texto citado -
Hi UpRider
The problem is that costumers can get in and out. When they left I
store all info. of that costumer in other table, when that costumer is
registred again as new I don´t want to retype all info again and store
as a new record. So the purpose is:
Add new record for that costumer, check if name exist, if so, retrieve
all info from table and fill in the entry form as new record, allowing
also to fill new info. and store when finishing.
Users are supose to write the name in accordance with ID card, to
avoid different name for same person.
Primary key is CostumerID (auto-number).
Thanks
Johnny