Based on the selection in a combo box using a dropdown list (Row Source Table) and the information entered into 2 text boxes, the results should show up in a text box, it's not happening. Don't know what is wrong. Below is the code use to calculate the results that shoud appear.
Please help because this was working now it's not.
Thanks
Code:
Private Sub Text25_Click()
Select Case Me.Action
Case "NegativePullTest"
If Me.PullForce >= 15 And Me.Nuggets >= 5 Then Me.Text25 = "Passed"
If Me.PullForce <= 14 And Me.Nuggets <= 4 Then Me.Text25 = "Failed"
If Me.PullForce >= 15 And Me.Nuggets <= 4 Then Me.Text25 = "Failed"
If Me.PullForce <= 14 And Me.Nuggets >= 5 Then Me.Text25 = "Failed"
Case "PositivePullTest"
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 Select
If Me.Text25 = "Failed" Then
MsgBox "Test Failed, Input cell with pass pop and then retest"
End If
End Sub
Thanks
Comment