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!