P
Peter
I have 10 combo-boxes called:
CBoxOwner1, CBoxOwner2, CBoxOwner3 etc
I need to write the contents of each box (using a loop) to a sheet
using i as the loop variable to refer to the particular combo-box.
Obviously the segment:
CBoxOwner & i
doesn't work to refer to
CBoxOwner1
when i = 1 etc
For i = 1 To 10
Cells(i + 2, 3) = frmTransportRequest.CBoxOwner & i
Next i
Is it possible to do this within a loop?
Peter
CBoxOwner1, CBoxOwner2, CBoxOwner3 etc
I need to write the contents of each box (using a loop) to a sheet
using i as the loop variable to refer to the particular combo-box.
Obviously the segment:
CBoxOwner & i
doesn't work to refer to
CBoxOwner1
when i = 1 etc
For i = 1 To 10
Cells(i + 2, 3) = frmTransportRequest.CBoxOwner & i
Next i
Is it possible to do this within a loop?
Peter