P
Phil K
I'm trying to find out if it is possible to and if so how to have an
inputted value between two number (label2 *1.01 and labe2*.98) will be an
acceptable "correct" number? Using ppt 2003
Private Sub CommandButton2_Click()
'Answer
Label2.Caption = Format((8.34 * Flow * (TS / 100) * (VS / 100)), "###")
Label6.Caption = "Lbs/Day"
----> Example If TextBox1 < Label2 * 1.01 Then
---> example 'if textbox1 > label2 * 0.98 Then
MsgBox ("Correct")
Else
MsgBox ("Wrong .. Click on Solution Button to help in how")
End If
End Sub
inputted value between two number (label2 *1.01 and labe2*.98) will be an
acceptable "correct" number? Using ppt 2003
Private Sub CommandButton2_Click()
'Answer
Label2.Caption = Format((8.34 * Flow * (TS / 100) * (VS / 100)), "###")
Label6.Caption = "Lbs/Day"
----> Example If TextBox1 < Label2 * 1.01 Then
---> example 'if textbox1 > label2 * 0.98 Then
MsgBox ("Correct")
Else
MsgBox ("Wrong .. Click on Solution Button to help in how")
End If
End Sub