NOOOOOOOOOOO.
You don't store redundant information in a table. Will you run an update
query every time you add a new record to your database? How about if you
make a change to one of the fields - what will cause the joint field to
update? That was not a thought-through answer.
To combine them, do so in your forms, queries, and reports. Not the table.
To make sure that there are no records in your table with a duplicate of the
two combined, you need to create a compound index.
You create an index in your table that consists of the two fields combined.
use the help file if you don't know how to do that, or post back.
--
Rick B
KARL DEWEY said:
Create the new fields and run an update query with the following --
[SkillID] & [Applicant ID]
Patty Stoddard said:
I have a table with a SkillID and an Applicant ID. How do I create a field
that combines these two fields? I want to set this new field a the key to
avoid duplicates in the table.