When you set up a for each-loop through a range, in what order will it chose cells?
In the case of rows/columns I hope it's from left to right and top to bottom respectively.
But how is it with other ranges, say 3x4 or 4x3?
In the case of rows/columns I hope it's from left to right and top to bottom respectively.
But how is it with other ranges, say 3x4 or 4x3?
Code:
function roulette(rRange As Range)
'rRange an arbitrary range
For Each cell In rRange
debug.print(cell.adress(false, false))
Next