Array of Range Objects
Is it possible to create an array of range objects? I have used the Set stmt
for range objects (Example #1). Is it possible to set up many rang objects
in an array and use the Set stmt on this array(Example #2)? If so how would
you dimension the array?
Example #1
Set rng = ........
Example#2
For X = 0 to 10
Set RngArray(0) = .....
Next
|