I am passing dates into variables labeled "Bx" using an increasing counter. There will be 45 of these variables so it will go Bx1 , Bx2, Bx3....Bx45.
Code for this part:
do while k<>46
Dim Bx(0 to 45)
blah blah blah
Bx(k) = blah blah blah
k = k + 1
loop
This works when defining variables but what if I want userform text boxes to named "Bx1, Bx2...Bx45" to display the value they've be defined with.
Currently the text boxes named Bx(1-45) have no values associated to them.
A tad confusing, this is the first time for me posting to an excel forum, so recommendations on how to clarify things is encouraged.
Thanks!
Code for this part:
do while k<>46
Dim Bx(0 to 45)
blah blah blah
Bx(k) = blah blah blah
k = k + 1
loop
This works when defining variables but what if I want userform text boxes to named "Bx1, Bx2...Bx45" to display the value they've be defined with.
Currently the text boxes named Bx(1-45) have no values associated to them.
A tad confusing, this is the first time for me posting to an excel forum, so recommendations on how to clarify things is encouraged.
Thanks!