How do you clear the displayed selection from a combobox after error? Combobox Alpha must be filled in before filling in comboboz Bravo. I have tried field="", =Null Set field =... Searched the internet, but didn't find it.
Code is
Private Sub O6_RECOMMENDATION___VOTE_BeforeUpdate(Cancel As Integer)
If Me!AO_Recommendation_Vote & "" = "" Then
MsgBox "AO Recommendation Vote must be filled in first"
Exit Sub
End If
End Sub
I am pretty sure it will be a one liner.
Thanks