J
James
From a report print command button on a form, I am trying to check to see
that a combo box selection was made before continuing.
My code:
If Me![Employee ID] = "" Then
MsgBox "Please select a Representative!", , "Missed Field Alert"
Me![Employee ID].SetFocus
End If
The problem is my code doesn't detect the empty combo box.
Any suggestions appreciated.
that a combo box selection was made before continuing.
My code:
If Me![Employee ID] = "" Then
MsgBox "Please select a Representative!", , "Missed Field Alert"
Me![Employee ID].SetFocus
End If
The problem is my code doesn't detect the empty combo box.
Any suggestions appreciated.