My form includes a combo box where you select what type of test you ran. Based on that selection and the information entered into two additional text boxes, I need to populate a text box on the same form with the results.
Here is the code I came up with so far:
Help would be greatly appreciated.
Toni
Here is the code I came up with so far:
Code:
Private Sub Text25_Click() If Me.Action = "NegativeTabWeld" Then If Me.PullForce >= 15 And Me.Nuggets >= 5 Then Me.Text25 = "Failed" If Me.PullForce <= 14 And Me.Nuggets <= 4 Then Me.Text25 = "Passed" Else If Me.Action = "PositiveTabWeld" Then If Me.PullForce >= 8 And Me.Nuggets >= 5 Then Me.Text25 = "failed" If Me.PullForce <= 7 And Me.Nuggets <= 4 Then Me.Text25 = "Passed" End If End Sub
Toni
Comment