Emanuele
New Member
- Joined
- Feb 25, 2020
- Messages
- 14
- Office Version
- 2016
- Platform
- Windows
Hi guys, i would like to know how to add the transpose option to that part of code
Thx!
Thx!
VBA Code:
Set DestSh = ActiveWorkbook.Worksheets.Add
Last = LastCol(DestSh)
Set Copy1 = sh.Range("C10:AZ10")
With Copy1
DestSh.Cells(1, Last + 1).Resize(.Rows.Count, .Columns.Count).Value = .Value
End With