GeorgeF211
New Member
Hi all,
in VBA, the statement
or
a1, b1, a2, b2, a3, b3[/code]
I'm sure this is something that is pretty common knowledge, but I can't seem to find an answer on the internet (search criteria for this kind of thing are hard, so it could be I'm not trawling correctly).
Thanks,
George
in VBA, the statement
Code:
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
[code]a1, a2, a3, b1, b2, b3
or
a1, b1, a2, b2, a3, b3[/code]
I'm sure this is something that is pretty common knowledge, but I can't seem to find an answer on the internet (search criteria for this kind of thing are hard, so it could be I'm not trawling correctly).
Thanks,
George