Is there a better built-in solution for spliting a Nx2 array into 2 Nx1 arrays other than just looping through the original array and assigning array values one at a time? Ex: Something fancier than
Dim xvalues as Variant
Dim yvalues as Variant
ReDim xvalues(1 To UBound(arr2d))
ReDim yvalues(1 To UBound(arr2d))
For i=1 To UBound(arr2d)
xvalues(i) = arr2d(i, 1)
yvalues(i) = arr2d(i, 2)
Next i