You are probably over complicating things
Because you have not got enough knowledge to avoid the pit falls
I will look at this for you and give you some pointers.
1. First Pitfall never change the control names.
That allows you to do cool things like
Fill 30 Text boxes with the numbers 1 to 30
For count = 1 to 30
Me.controls("Textbox"&Count).text = count
Next
or
Fill The 30 Text Boxes with the contents of row 1, A1 to AD1
For count = 1 to 30
Me.controls("Textbox"&Count).text = cells(1,count).value
Next
or
Save The 30 Text Boxes to row 1, A1 to AD1
For count = 1 to 30
cells(1,count).value = Me.controls("Textbox"&Count).text
Next
2. Second Pitfall Number Your Text boxes in the order you want to save them.
Your Numbering and Data are all over the place.
It Just Makes it Harder to work with.
Bookmarks