Greetings!
Say you are making a database that tracks where clients have gone on vacation.
You have a table named 'tblTrip.' tblTrip looks something like
[client id (primary key)] [destination]
It's keyed by the client id to a table tblClient which has your basic client info. We track where John Smith goes, and we will enter an unlimited number of trips per client.
There's a tremendous amount of duplication, obviously, since many clients are going to the same place.
How can you design a form that allows the option to choose from trips already taken, pulling from the entered trips of others, but also allows the data entry person to add a new trip? In other words, he can select from Paris, Rome, NY but could also enter Brussels. Also, I need the mechanism to be intelligent so that, if 15 clients have gone to Paris, I avoid listing Paris 15 times.
I'm sure this is an easy question for those more expert than I.
Many thanks in advance for any guidance.
John Sailor
Say you are making a database that tracks where clients have gone on vacation.
You have a table named 'tblTrip.' tblTrip looks something like
[client id (primary key)] [destination]
It's keyed by the client id to a table tblClient which has your basic client info. We track where John Smith goes, and we will enter an unlimited number of trips per client.
There's a tremendous amount of duplication, obviously, since many clients are going to the same place.
How can you design a form that allows the option to choose from trips already taken, pulling from the entered trips of others, but also allows the data entry person to add a new trip? In other words, he can select from Paris, Rome, NY but could also enter Brussels. Also, I need the mechanism to be intelligent so that, if 15 clients have gone to Paris, I avoid listing Paris 15 times.
I'm sure this is an easy question for those more expert than I.
Many thanks in advance for any guidance.
John Sailor