'Transposing one column from first to final cell to a different location

What I wish to end up with

enter image description here

Sub Traping()

Dim r As Range, N As Long, t As Variant
N = Cells(Rows.Count, "A").End(xlUp).Row
Set r = Cells(N, 1).EntireColumn

r.Copy
'Cells(N + 1, 1).PasteSpecial Transpose:=True

t = WorksheetFunction.Transpose(r)
Range("N1", Cells(N + 1, 1)).Value = t


'r.Delete

End Sub


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source