Dim rw as Long, col as Long
dim cellA as Range, cellB as Range
dim cellC as Range
rw = 1
col = 5
for each cellA in Range("A1:A10")
for each cellB in Range("B1:B15")
for each cellC in Range("C1:C8")
cells(rw,col).value = CellA
cells(rw,col+1).value = CellB
cells(rw,col+2).value = CellC
rw = rw + 1
if rw > 60000 then
rw = 1
col = col + 4
end if
Next
Next
Next
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.