Hi:
I need to perform data validation on an AfterUpdate Event. I am validating a dimension- a tolerance. I need to specify a range of which the data can be. Like, between 0.172 and 0.174, for example.
The data to be validated is in a text box. But the criteria for what the range needs to be depends on what is selected in a combo box on the same form. For example:
If cboWireSize=0.172 Then
txtActualWireSize >=0.172 or <=0.174
Else MsgBox "The wire is out of spec."
End If
Pardon any inconsistencies. I am a newbie to this game.
Any help is greatly appreciated. Thanks a lot.
Daniel Pope
I need to perform data validation on an AfterUpdate Event. I am validating a dimension- a tolerance. I need to specify a range of which the data can be. Like, between 0.172 and 0.174, for example.
The data to be validated is in a text box. But the criteria for what the range needs to be depends on what is selected in a combo box on the same form. For example:
If cboWireSize=0.172 Then
txtActualWireSize >=0.172 or <=0.174
Else MsgBox "The wire is out of spec."
End If
Pardon any inconsistencies. I am a newbie to this game.
Any help is greatly appreciated. Thanks a lot.
Daniel Pope