Hi,
On Sheet1 all 1048576 rows are filled with data
On Sheet2 the data extends to row 500000
Want to create an array that has the combined data from both sheets (preferrably without using loops as that will take a long time to process)
Idially, creating two arrays
Arr1 = Sheet(1).Range("A1:A1048576")
Arr2 = Sheet(2).Range("A1:A500000")
then somehow joining them into a single array
The problem is I am not able to make the Union command to work accross 2 sheets
Thanks
Bookmarks