Belleke
Well-Known Member
Hello,
I have this code
Columns are switched.
But I need extra code.
The copy of sheet 1 should start a row 28 to the last used row.
rows 1 to 27 not copied)
Pasting should start at row 2 in sheet 2
The pasting should be values only
(PasteSpecial xlPasteValues)
Thanks in advance to helping me out
I have this code
Columns are switched.
Code:
With Sheets("Sheet1")
.Columns(6).Copy Destination:=Sheets("Sheet2").Columns(1)
.Columns(1).Copy Destination:=Sheets("Sheet2").Columns(2)
.Columns(7).Copy Destination:=Sheets("Sheet2").Columns(3)
.Columns(8).Copy Destination:=Sheets("Sheet2").Columns(4)
End With
The copy of sheet 1 should start a row 28 to the last used row.
rows 1 to 27 not copied)
Pasting should start at row 2 in sheet 2
The pasting should be values only
(PasteSpecial xlPasteValues)
Thanks in advance to helping me out