I'm trying to copy row values to other rows but I need them transposed. I've the following code but it doesn't work.
Sub Prueba()
Worksheets("Punto 5").Range("J9:M9").Copy
Worksheets("Punto 5").Range(Cells(ActiveCell.Row + 1, ActiveCell.Column)).PasteSpecial Transpose:=True
End Sub
I checked this answer but it didn't help me at all. Excel VBA - Range.Copy transpose paste
Any help please?