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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top