Textbox change error

buzz71023

Active Member
Joined
May 29, 2011
Messages
295
Office Version
  1. 2016
Platform
  1. Windows
I have a userfrom with 3 textboxs (textbox1, textbox2, textbox3). I want when the user input a number in text box 1 for textbox2 to = +7 more than textbox1's value and for textbox3 to = -7 less than textbox1's value. I have it working correctly except if there is a number that is typed in wrong in textbox1 and backspace is utilized to erase all the number I get a Runtime error 13 debug message.

For example, if I type 50 in textbox1. Textbox2 = 57 and textbox3 = 43 but when I erase 50 the error pops up

below is my code so far

Code:
Private Sub TextBox1_Change()

TextBox2.Value = TextBox1.Value + 7
TextBox3.Value = TextBox1.Value - 7

End Sub
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
I have a userfrom with 3 textboxs (textbox1, textbox2, textbox3). I want when the user input a number in text box 1 for textbox2 to = +7 more than textbox1's value and for textbox3 to = -7 less than textbox1's value. I have it working correctly except if there is a number that is typed in wrong in textbox1 and backspace is utilized to erase all the number I get a Runtime error 13 debug message.

For example, if I type 50 in textbox1. Textbox2 = 57 and textbox3 = 43 but when I erase 50 the error pops up

below is my code so far

Code:
Private Sub TextBox1_Change()

TextBox2.Value = TextBox1.Value + 7
TextBox3.Value = TextBox1.Value - 7

End Sub
Try the code this way...
Code:
Private Sub TextBox1_Change()
  TextBox2.Value = Val(TextBox1.Value) + 7
  TextBox3.Value = Val(TextBox1.Value) - 7
End Sub
 
Upvote 0
Try including something like
Code:
If LenB(TextBox1.Value)>0 Then
    TextBox2.Value...
    TextBox3.Value...
End If
 
Upvote 0
perfect Rick... thanks for the quick response
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top