I have a tabbed form. I have an AfterUpdate command to check to see if SubjectEmail is blank on the first tab (Individual). I can move to the tab but I cannot move to the SubjectEmail field. I get an error, that the field doesn't exist in the record. I'm apparently referring to the field incorrectly. I've searched but cannot find the answer. Any help would be appreciated.
If IsNull([SubjectEMail]) Then
MsgBox "Sponsor's e-mail field is blank. Cannot send e-mail at this time", vbOKOnly, "Missing E-mail"
Me.[Individual].SetFocus
DoCmd.GoToControl "SubjectEmail"
Else
End If
If IsNull([SubjectEMail]) Then
MsgBox "Sponsor's e-mail field is blank. Cannot send e-mail at this time", vbOKOnly, "Missing E-mail"
Me.[Individual].SetFocus
DoCmd.GoToControl "SubjectEmail"
Else
End If