View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
KRCowen KRCowen is offline
external usenet poster
 
Posts: 21
Default how to assign ranges on different sheets to an array

I need to load 4 columns of data from two different worksheets into a list box
on a userform. I can load all the data (the data columns will all be the same,
and they will always have 4000 to 10000 rows) into an array and assign the
array to be the rowsource for the listbox. Currently, I am doing this by
reading each cell value in a loop through each column. Is there a more
efficient way to simply assign the ranges to the array without looping through
all the data?

Thanks

Ken