scottscott
Programmer
Is it possible to access a userform textbox through a for loop?
for i = 1 to 9
if myform.textbox1.value = 1 then
'perform task
end if
next i
Is there anyway to replace myform.textbox1.value with myform.textbox(i).value?
for i = 1 to 9
if myform.textbox1.value = 1 then
'perform task
end if
next i
Is there anyway to replace myform.textbox1.value with myform.textbox(i).value?