I need to loop through my code using a counter index which is non-systematic. For example, j = 1,3, 11,12,30,40,99 .... I intuitively attempted the following (based on j in this example) but which failed.
For i = 1 To 7
For j = Array( 1,3, 11,12,30,40,99)
Cells(j, "a") = "testing"
Next
Next
The idea is to get the loop working the first time and then apply an outer loop to run through several sheets with identical spreadsheet format.
Thanks for any help.
David
Bookmarks