View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
muster muster is offline
external usenet poster
 
Posts: 25
Default Dimention & manipulation of Variant array

I use variant array (ie. dim array as variant) to read a range from a
sheet into to an array to avoid loops.

I found the array is always 2D, even when I read a single row or
column. Is there a way (or another way if I did wrong) to make it 1D
array?

Further more, is it possible to get single row or column from this kind
of 2D array quickly, like array(1) or array(1, *)?

Hopefull I made it clear, thank you.