I have to entry boxes on a form. If the boxes are populated then this is the path that is ran:
No how do I write it if boxes PUllforce and Nugget are blank so that the Test Results field will go blank?
Thanks
Code:
If Me.PullForce.Value > 14 And Me.Nuggets.Value > 4 Then Me.Test_Results.Value = "Failed" If Me.PullForce.Value < 15 And Me.Nuggets.Value < 5 Then Me.Test_Results.Value = "Passed" If Me.PullForce.Value = "" And Me.Nuggets.Value = "" Then Me.Test_Results.Value = ""
Thanks
Comment