N
ngan
We need to save the addresses of our clients when we send out letters This
way, we have a static history, in case our client wonder where we sent the
letters.
we have a tblClient that house the current addresses of the client.
We have several tables where we will send out letters, using the client's
address. For instance, the Complaints and NoShow tables contain clientID,
name, address and phone fields.
Every time a client has a complaint or a noshow, we have to have a copy of
the client's current address in the two tables. We use the information to
send out letters (using a report template). We can't use the current info in
tblClient because that is always changing. We need to know what address we
used to send out a letter in case the client questions it.
This means having the information copied in several tables. Seems
redundant, but I can't see how else to do it if we need a historic record of
the letter.
Am I setting up the tables correctly? There could be 3-4 tables that
require letters and therefore require saving the address info.
Thanks.
way, we have a static history, in case our client wonder where we sent the
letters.
we have a tblClient that house the current addresses of the client.
We have several tables where we will send out letters, using the client's
address. For instance, the Complaints and NoShow tables contain clientID,
name, address and phone fields.
Every time a client has a complaint or a noshow, we have to have a copy of
the client's current address in the two tables. We use the information to
send out letters (using a report template). We can't use the current info in
tblClient because that is always changing. We need to know what address we
used to send out a letter in case the client questions it.
This means having the information copied in several tables. Seems
redundant, but I can't see how else to do it if we need a historic record of
the letter.
Am I setting up the tables correctly? There could be 3-4 tables that
require letters and therefore require saving the address info.
Thanks.