I have an unbound form so I'm using VB to check that required fields are filled in before saving the record. Initially there was only one required field but now they would like more. I'm checking for nulls using:
What would be the best way to check for more fields? Add another if statement below this one or can I check for several null fields with one If statement?
Code:
If IsNull(Me!TechRxEInit) Then
MsgBox "Tech initials cannot be blank!"
Exit Sub
Else
Do Stuff
End If
What would be the best way to check for more fields? Add another if statement below this one or can I check for several null fields with one If statement?