I am attempting to join together up to 32 arrays. I haven't even managed to join 2! can it be done in excel 2003 VBA?
the arrays are 2 dimensional (x Rows, 3 Columns).
I have tried this but just produced empty variants:
![]()
''''''''''''trialcombine arrays''''''''''''''''''''''''''' v = CombineTwoDArrays(point1A, point1B) Public Function CombineTwoDArrays(Arr1 As Variant, Arr2 As Variant) As Variant CombineTwoDArrays = v End Function
Bookmarks