Using array's numeric contents as counters in nested For loops

RaistMagus

New Member
Joined
Apr 13, 2013
Messages
1
Hi guys, I need a large number of nested loops and instead of using many variables as a counter for each, I thought of using an array of integers and have each of its positions as a counter for each loop. However I get the "For control variable already in use" message. Is there a way around it?

For IndexCursor(1) = 1 To DataDimensions(1)
For IndexCursor(2) = 1 To DataDimensions(2)
For IndexCursor(3) = 1 To DataDimensions(3)

Worksheets("Sheet1").Cells(CurrentLine, 1) = Worksheets("Sheet2").Cells(IndexCursor(1), 1)
Worksheets("Sheet1").Cells(CurrentLine, 2) = Worksheets("Sheet2").Cells(IndexCursor(2), 2)
Worksheets("Sheet1").Cells(CurrentLine, 3) = Worksheets("Sheet2").Cells(IndexCursor(3), 3)


CurrentLine = CurrentLine + 1

Next
Next
Next
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
I'm fairly certain that the control variable of a For..Next loop must be a scalar variable - so not an array. Good thinking though.
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top