Quick question about textboxes and For-Next loops.
I have a series of textboxes in a userform, used chronologically (ie, textbox1, textbox2, ... textboxN)
Lets say I have a For Next loop, 1 to N, how can I refer to the textboxes? I have tried (and failed) to use code like below:
I am 99% sure I have done something like this before, and I just cannot remember how.![]()
For i = 1 to N Range("A" & i) = textbox & i Next i
Bookmarks