Okay, so I would like to check my table beforeUpdate to see if firstname, lastname, email are exactly the same as another entry. If so, I'll put up a "record already exists" MsgBox. I was just going to have a prevent duplicates for the email but then I realized that some people share emails. So I would have two (or more) using the same email and last name but firstname would be different.
I'm assuming I would have to code it in the BeforeUpdate event?
I know I will have to do an IF statement but how do I format it?
If Me.Firstname, Me.Lastname, Me.email = record already exists? then do something else saverecord.
Thanks AGAIN in advance.