Can't make two loops work
Solved/Closed
Related:
- Can't make two loops work
- Fruity loops free download - Download - Musical production
1 response
Ivan-hoe
Posts
433
Registration date
Saturday February 16, 2008
Status
Member
Last seen
October 17, 2008
110
Sep 13, 2008 at 01:58 AM
Sep 13, 2008 at 01:58 AM
Hello FRA,
you're nearly there !
Move jRow = 3 immediately after Do Until IsEmpty(Cells(iRow, "D")) and it will work.
Ivan
you're nearly there !
Move jRow = 3 immediately after Do Until IsEmpty(Cells(iRow, "D")) and it will work.
Ivan
Sub CambiarCodigos() Dim iRow As Long, jRow As Long iRow = 3 Do Until IsEmpty(Cells(iRow, "D")) jRow = 3 Do Until IsEmpty(Cells(jRow, "A")) etc.
Oct 1, 2008 at 04:59 PM