N
noncentric
I taught myself enough Access today to create 4 tables and a couple forms,
which will populate the tables the way I need them to be populated.
Now I'm stuck...
I have firstname's and lastname's for each person in my db, along with
additional info. I assigned a unique id to each person, and this unique id is
used to link the various tables.
I have a form that will allow me to enter new people (who will then
automatically receive a unique id). The form also allows me to edit existing
people's records.
However, I don't want to have multiple records for the same person. I need a
way to determine whether people I'm entering are already in the db (and
therefore don't need a new ID)...or if they're new to the db (and therefore
do need a new ID).
It seems that the only solution is for me to go through the list of people
I'll be entering, and compare them to a list of people already in my db. This
will take too much time.
Ideally, I'd like the form to work as follows:
I enter firstname, then enter lastname, then:
- the form gives me an error message if that firstname/lastname combination
is already present in my db...and even better, the form auto-populates with
the existing data for that person so I only have to edit one or two fields.
- if the person isn't already in my db, then I'll go ahead and complete all
of the fields for that person.
If anyone has any advice, then that would be greatly appreciated. If this
isn't at all possible, then that info would be good to know.
Thanks!
which will populate the tables the way I need them to be populated.
Now I'm stuck...
I have firstname's and lastname's for each person in my db, along with
additional info. I assigned a unique id to each person, and this unique id is
used to link the various tables.
I have a form that will allow me to enter new people (who will then
automatically receive a unique id). The form also allows me to edit existing
people's records.
However, I don't want to have multiple records for the same person. I need a
way to determine whether people I'm entering are already in the db (and
therefore don't need a new ID)...or if they're new to the db (and therefore
do need a new ID).
It seems that the only solution is for me to go through the list of people
I'll be entering, and compare them to a list of people already in my db. This
will take too much time.
Ideally, I'd like the form to work as follows:
I enter firstname, then enter lastname, then:
- the form gives me an error message if that firstname/lastname combination
is already present in my db...and even better, the form auto-populates with
the existing data for that person so I only have to edit one or two fields.
- if the person isn't already in my db, then I'll go ahead and complete all
of the fields for that person.
If anyone has any advice, then that would be greatly appreciated. If this
isn't at all possible, then that info would be good to know.
Thanks!