Hi all,
in VBA, the statement
For Each Cell In Range
is used quite a bit. My question is, does this function cycle through by row or by column, i.e. for the range A1:B3 would it work through in the order
a1, a2, a3, b1, b2, b3
or
a1, b1, a2, b2, a3, b3
I'm sure this is something that...