Greetings Experts...
I have googled this to death...review dozens of historical threads here and, well, here I am.
Couldn't be more simple... If user selects "Lb" in the CmbSoldBy ComboBox then the control TxtQty TextBox = "NA" else it remains empty.
I've tried brackets [], I've tried using Me.CmbSoldBy and of course Me.TxtQty - I keep getting a 'Compile Error Expected ='
Code:
Private Sub CmbSoldBy_AfterUpdate()
IIf(CmbSoldBy = "Lb", TxtQty = "NA", TxtQty = "")
End Sub
As Always...
Thank You Very Much
RT91