vote up 1 vote down star

This is one of those things that I'm sure there's a built-in function for (and I may well have been told it in the past), but I'm scratching my head to remember it.

How do I loop through each row of a multi-column range using Excel VBA? All the tutorials I've been searching up seem only to mention working through a one-dimensional range...

flag

2 Answers

vote up 4 vote down check
Dim a, b As Range

Set a = Selection

For Each b In a.Rows
    MsgBox b.Address
Next
link|flag
vote up 3 vote down

Something like this:

Dim rng As Range
Dim row As Range
Dim cell As Range

Set rng = Range("A1:C2")

For Each row In Rng.Rows
  For Each cell in row.Cells
    'Do Something
  Next cell
Next cell
link|flag

Your Answer

Get an OpenID
or

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