I am trying to transpose the last row of my spreadsheet so that it becomes a column.
I have started such that I retrieve the last column/row number of the spreadsheet but I don't know how to make it an array to transpose it with Application.transpose(myarray)
or Application.WorksheetFunction.Transpose(myarray)
Dim lRow As Long, lCol As Long
lRow = Cells(Rows.Count, 1).End(xlUp).Row
lCol = Cells(1, Columns.Count).End(xlToLeft).Column
Any tips?
Thanks