Deleting text from one control based on the value/text of the othe

  • Thread starter Thread starter SPK
  • Start date Start date
S

SPK

Hi,
I need help in deleting text from one text box based on the text box i.e.,
if a text in one of the text box is changed to "negative" then other text
boxes should not have any text/value inside them.
 
In the after update event of your textbox put something like this

If TextBoxName = "negative" Then
OtherTextBox1 = ""
OtherTextBox2 = ""
etc ....
End if
 
Back
Top