I have a form wherein if the value of lstatus (which is a combo text field input) is say "c" and another field named n_days which is a number field is greater than figure three (3)then I spit a message box.
I have done so with the code below on Before Update of the form:
Code:
If ((lstatus.Value = "C") And (n_days.Value > 3)) Then
Leave a comment: