I am trying to get this code to work but cannot get it to work properly
Basically, I want BOX1 to be displayed if the Quantity is larger than Eng_Qty_Amount. If not then I want BOX2 to be displayed
Code i have so far is:
Private Sub Code_AfterUpdate()
If Quantity > Eng_Qty_Amount Then
MsgBox "BOX 1"
Else
MsgBox "BOX 2"
End If
End Sub
Any suggestions?
Chris
Basically, I want BOX1 to be displayed if the Quantity is larger than Eng_Qty_Amount. If not then I want BOX2 to be displayed
Code i have so far is:
Private Sub Code_AfterUpdate()
If Quantity > Eng_Qty_Amount Then
MsgBox "BOX 1"
Else
MsgBox "BOX 2"
End If
End Sub
Any suggestions?
Chris