I\'m hoping to load values in a range to an array and transpose that array to another location (different workbook)
I am using the below forum post to get an idea of
Similar, but using Resize and Ubound:
Dim myarray As Variant myarray = Array(1, 2, 3, 4, 5) Sheets("sheet1").Range("A1").Resize(UBound(myarray), 1).Value = Application.Transpose(myarray)