hello.
when looping you can use steep in the loop this can also be used to loop backwards eg for x = 10 to 1 step -1
Sub StepLoop()
Dim X As Long, Counter As Long
With ThisWorkbook.Sheets(1)
Counter = 1
For X = 1 To 10 Step 2: 'Note use of counter as x loop will go 1,3,5,7,9
.Cells(X, 1).Value = Counter & " Test"
.Cells(X + 1, 1).Value = "Testing"
Counter = Counter + 1
Next X
End With
End Sub
there are many ways to do the same thing in vba some stick in the head easer than other thats all.
If you have any libarys around you see if they can get some books on VBA, VB programming once the basics are understood i found trying to answer question on here realy helps to learn.
hope this helps
cheers
Bookmarks