mins and max for multiple textboxs in userform

mrmarc

Board Regular
Joined
Feb 3, 2014
Messages
79
'for txt2
If txt2.Value <> "" And Not IsNumeric(txt2) Then
MsgBox "Please enter Numbers only"
Exit Sub
ElseIf txt2.Value > 100 Or txt2.Value < 1 Then
MsgBox "Number Outside limits ""1-100"""
Exit Sub
End If
'for txt3
If txt3.Value <> "" And Not IsNumeric(txt3) Then
MsgBox "Please enter Numbers only"
Exit Sub
ElseIf txt3.Value > 100 Or txt3.Value < 1 Then
MsgBox "Number Outside limits ""1-100"""
Exit Sub
End If
'for txt4
If txt4.Value <> "" And Not IsNumeric(txt4) Then
MsgBox "Please enter Numbers only"
Exit Sub
ElseIf txt4.Value > 100 Or txt4.Value < 1 Then
MsgBox "Number Outside limits ""1-100"""
Exit Sub
End If


I am using this code for multiple textboxes in one user form. When i fill in all text boxes with numbers within my range it works. But when leave some empty or "" my msgbox pops up "Number outside the limits..."

What do you suggest for multiple textboxes on one userform? Can we modify this code?
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand

Forum statistics

Threads
1,215,053
Messages
6,122,888
Members
449,097
Latest member
dbomb1414

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