J
JE McGimpsey
FWIW, one can flatten the array of arrays to a two-dimensional array
suitable for assigning to a range using Application.Transpose:
Dim v As Variant
v = Array(Array(1, 4), Array(3, 9))
Range("A1:B2").Value = Application.Transpose(v)
suitable for assigning to a range using Application.Transpose:
Dim v As Variant
v = Array(Array(1, 4), Array(3, 9))
Range("A1:B2").Value = Application.Transpose(v)