up vote 0 down vote favorite
share [g+] share [fb]

I want to process every element of a for-loop. Taking this code, why is just every second element processed?

For Each row In ws.Rows
    If IsEmpty(row.Cells(row.row, 1)) Then
        Exit For
    Else
        MsgBox row.Cells(row.row, 1).value
    End If
Next

Thanks in advance for your answers!

link|improve this question

2  
It's been a while since I've used VBA, but shouldn't you be looking at ws.Cells(row.row, 1) instead of row.Cells(row.row, 1)? – Dan Tao Jul 13 '09 at 16:34
feedback

2 Answers

up vote 2 down vote accepted

Instead of refering to Row.Cells refer to Worksheet.Cells. Also, you might want to select the ActiveRange of the worksheet, that should prevent a lot of useless Rows in your for-each.

Check out MSDN for examples on this.

link|improve this answer
1  
UsedRange, not ActiveRange. – Gary McGill Jul 13 '09 at 21:21
feedback

Setting ws to a Range with the range of cells B1:B10 which contain the values 1-10 respectively will produce the desired result:

Sub Macro1() Dim ws As Range

Set ws = Range("B1:B10")

For Each Row In ws.Rows

If IsEmpty(ws.Cells(Row.Row, 1)) Then
    Exit For
Else
    MsgBox ws.Cells(Row.Row, 1).Value
End If

Next

End Sub

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.