I currently use the following code to have a box popup if a certain field is blank
I need help in modifying this so that the popup only pops up if another field [reason] has the text "Scheduling issue" in it AND the [detailed_reason] is blank.
Thank you for any help
Paul
Code:
If (IsNull(detailed_reason)) Then
MsgBox "Please choose a Company", vbExclamation
Cancel = True
End If
I need help in modifying this so that the popup only pops up if another field [reason] has the text "Scheduling issue" in it AND the [detailed_reason] is blank.
Thank you for any help
Paul