userform multiple textbox user input loop stuck on 42nd loop due to run-time error

gsharad

New Member
Joined
Apr 26, 2017
Messages
13
Hi,

I am facing a run-time error when I run my VBA to collect user data in 52 text boxes thru loop code. Apart from set of 52 boxes, I have 2 more sets of 52 txtboxs however they are enabled false and used to show % & other calc based on txtbox in 1st set.
When I run the VBA and start loop to collect data and store it in txtbox, the code gives run-time error at 42nd loop. It works fine till 41st iteration.

Code:
Private Sub Calculate Sum()
Dim Grandtot as Long
Grandtot = 0

Dim i as long
For i=1 to 52
landingpageForm1.TextBox150.Value = landingpageForm1.TextBox150.Value + _
 Val(landingpageForm1.Controls("TextBox" & i).Value)
Next
End Sub

Private Sub userform_clikc()

TextBox1.Value = ""
.
.
.
.
.
.
.

TextBox51.Value = ""

[\Code]
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
No change event till now, I will add them once i am able to complete the calculation loop for 52 txtboxes
 
Upvote 0
It sounds like you don't have a TextBox42, perhaps a space got into the name of that text box.
 
Upvote 0
I double checked everything.. the txt is fine, no gaps, nothing different and all 52 txtbox exists
 
Upvote 0
Have you tested with something like

Code:
Sub UserForm_Click()
    Dim I as Long
    I = 42
    Me.Caption = Me.Controls("TextBox" & 42).Text
End Sub

Have you tried using the .Text property instead of .Value
Code:
landingpageForm1.TextBox150.Value = landingpageForm1.TextBox150.Value + _
 Val(landingpageForm1.Controls("TextBox" & i).Text)
 
Upvote 0
HI
I was able to resolve, after sequentially arranging the textboxes in the design window.
Previously they were not sequentially arranged. and I also changed the name from TextBox to CalTxtBox

Thank you for help
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,583
Messages
6,131,557
Members
449,655
Latest member
Anil K Sonawane

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