I have a table for (EmployeeT) and a form for a user to enter new employees into the table (EmployeeF). The form requests the employees first and last names, and the table concatenates the two to display as "Last Name, First Name".
How do I make sure my end user doesn't input two of the same employee into the table? I know this can be accomplished by using my primary key, but currently my pk field is my employee ID number and it is linked to several other tables. My other thought was to set my indexed field property to Yes (No Duplicates), but I can't do that since it is a calculated field. What about something in the calculation of the field?
Thanks,
jmd