Filling an Array Quickly
You're ignoring the central premise that this must be a SINGLE array, not a VARIANT.
"Gary's Student" gave me a solution which appears to be what I need.
Thanks.
Bill
----------------
Fernando Fernandes wrote:
to fill an array with contents of cells, you should certainly read it with
one line of code insteat of 10 thousand.
dim y as variant
y = range("a1:j1000")
|