Here’s an odd one, I think. I have code that creates a two-dimensional array and I want to use Application.WorksheetFunction.Transpose to switch the rows and columns.
Sub TestTrans()
Dim aTest(0 To 3, 0 To 1) As Long
Dim vaTrans As Variant
Dim i As Long, j As Long
[...] Read More...