I created a macro to run this code:
If InStr(1,[email],"@")=0 Or InStr(1,[email],".")=0 Then
MsgBox "Please enter an email in the name@domain.com format."
Cancel = True
End If
and then set the macro in the BeforeUpdate event. But it did not work:confused:
Is there anything that I...