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]
 
HI Mike,

Could you please help me with my another post -- [h=2]"userfrom textbox percentage calculation in loop - blanks are also calculated"[/h]

Thanks
 
Upvote 0

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.

Forum statistics

Threads
1,223,262
Messages
6,171,080
Members
452,377
Latest member
bradfordsam

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