I've put this line into my code
but every time I run it just seems to skip the if statement and keep going. This happens when I change the Null to "" or even to a value and then enter that in the text box. Am I going mad?
Code:
If Me.Text3 = Null Then
MsgBox "Please enter the date of the exam", vbExclamation, "Date Missing"
Exit Sub
End If
Comment