Looks like I'm stuck with these commands;I'm trying to separate the data (in structure tab) and execute the commands in "TMHP-PL" tab
Sub CopyPasteAcrossColumnsFINAL()
Dim LR As Long, i As Long
Application.ScreenUpdating = False
With Sheets("structure")
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LR
.Range("A" & i).Copy
.Sheets("TMHP-PL") = Cells(3, 1 * i + 1).Resize(, 13)
Next i
End With
End Sub
Sub CopyPasteAcrossColumnsFINAL()
Dim LR As Long, i As Long
Application.ScreenUpdating = False
With Sheets("structure")
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LR
.Range("A" & i).Copy
.Sheets("TMHP-PL") = Cells(3, 1 * i + 1).Resize(, 13)
Next i
End With
End Sub