Hi,
I have a for loop that runs from 1 to 27
and i want it to update my textboxs from 1 to 27
For i = 1 To 27
TextBox1.Value = ActiveCell.Value
If TextBox1.Value = "" Then CheckBox1 = False
ActiveCell.Offset(0, 1).Activate
Next
how should i write it if i want that text box1 will be textbox(i)
Thanks,
Aviad
I have a for loop that runs from 1 to 27
and i want it to update my textboxs from 1 to 27
For i = 1 To 27
TextBox1.Value = ActiveCell.Value
If TextBox1.Value = "" Then CheckBox1 = False
ActiveCell.Offset(0, 1).Activate
Next
how should i write it if i want that text box1 will be textbox(i)
Thanks,
Aviad