A family of Microsoft relational database management systems designed for ease of use.
Thank you for the speedy reply.
I will combine this with a couple of other fields to capture any duplicate inputs.
I usually use DCount() to check for duplicates. For example:
If DCount("*", "dbo_Customer", "FName = '" & TempVars!FirstName & "'") > 0 Then
'duplicate
Else
'not duplicate
End If
Hope that helps...