Hi i have a textbox on my userform which adds up the numerical values entered into 24 textboxs on a userform page
The code i use ensures that it does not add up the values if any textbox is empty or not numeric
as the textboxs on the userform do not need to be filled in a specific order i have had to add this code to every textbox, which has resulted in alot of code. Is there any other way i can go about this? As im having issues with my userform i believe due to too much code
If (Me.TextBox12.Value = "" Or Me.TextBox13.Value = "" Or Me.TextBox22.Value = "" Or Me.TextBox23.Value = "" Or Me.TextBox24.Value = "" Or Me.TextBox25.Value = "" Or Me.TextBox26.Value = "" Or Me.TextBox27.Value = "" Or Me.TextBox28.Value = "" Or Me.TextBox29.Value = "" Or Me.TextBox30.Value = "" Or Me.TextBox31.Value = "" Or Me.TextBox32.Value = "" Or Me.TextBox33.Value = "" Or Me.TextBox34.Value = "" Or Me.TextBox35.Value = "" Or Me.TextBox36.Value = "" Or Me.TextBox37.Value = "" Or Me.TextBox38.Value = "" Or Me.TextBox39.Value = "" Or Me.TextBox40.Value = "" Or Me.TextBox41.Value = "" Or Me.TextBox42.Value = "" Or Me.TextBox43.Value = "" Or Me.TextBox44.Value = "") Then
TextBox103 = ""
End If
If Not IsNumeric(Me.TextBox12.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox13.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox22.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox23.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox24.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox25.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox26.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox27.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox28.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox29.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox30.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox31.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox32.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox33.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox34.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox35.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox36.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox37.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox38.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox39.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox40.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox41.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox42.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox43.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not IsNumeric(Me.TextBox44.Value) Then
TextBox103.Value = ""
Exit Sub
End If
If Not (Me.TextBox12.Value = "" Or Me.TextBox13.Value = "" Or Me.TextBox22.Value = "" Or Me.TextBox23.Value = "" Or Me.TextBox24.Value = "" Or Me.TextBox25.Value = "" Or Me.TextBox26.Value = "" Or Me.TextBox27.Value = "" Or Me.TextBox28.Value = "" Or Me.TextBox29.Value = "" Or Me.TextBox30.Value = "" Or Me.TextBox31.Value = "" Or Me.TextBox32.Value = "" Or Me.TextBox33.Value = "" Or Me.TextBox34.Value = "" Or Me.TextBox35.Value = "" Or Me.TextBox36.Value = "" Or Me.TextBox37.Value = "" Or Me.TextBox38.Value = "" Or Me.TextBox39.Value = "" Or Me.TextBox40.Value = "" Or Me.TextBox41.Value = "" Or Me.TextBox42.Value = "" Or Me.TextBox43.Value = "" Or Me.TextBox44.Value = "") Then
TextBox103.Text = (Int(UserForm1.TextBox12.Value) + Int(UserForm1.TextBox13.Value) + Int(UserForm1.TextBox22.Value) + Int(UserForm1.TextBox23.Value) + Int(UserForm1.TextBox24.Value) + Int(UserForm1.TextBox25.Value) + Int(UserForm1.TextBox26.Value) + Int(UserForm1.TextBox27.Value) + Int(UserForm1.TextBox28.Value) + Int(UserForm1.TextBox29.Value) + Int(UserForm1.TextBox30.Value) + Int(UserForm1.TextBox31.Value) + Int(UserForm1.TextBox32.Value) + Int(UserForm1.TextBox33.Value) + Int(UserForm1.TextBox34.Value) + Int(UserForm1.TextBox35.Value) + Int(UserForm1.TextBox36.Value) + Int(UserForm1.TextBox37.Value) + Int(UserForm1.TextBox38.Value) + Int(UserForm1.TextBox39.Value) + Int(UserForm1.TextBox40.Value) + Int(UserForm1.TextBox41.Value) + Int(UserForm1.TextBox42.Value) + Int(UserForm1.TextBox43.Value) + Int(UserForm1.TextBox44.Value))
End If
End Sub
Bookmarks