Put 1D array into column
Charlie wrote:
That's the ticket! It converts the 1D array to 2D in the column direction,
e.g.
Dim a(3) '(Base 1)
a = Application.WorksheetFunction.Transpose(a)
"a" becomes a(1,1), a(2,1), a(3,1)
very useful! Thanks.
Same result for Dim a(2) '(Base 0)
Alan Beban
|