Sub Transferer()
Application.ScreenUpdating = False
With Sheets("Destination")
For C = 1 To Application.Match("TOTAL1", .[4:4], 0) - 1
.Cells(1, 1).EntireColumn.Delete
Next C
End With
With Sheets("Source")
N = Application.CountIfs(.[4:4], "*")
.Range(.Cells(4, 1), .Cells(18, N)).Copy
End With
Sheets("Destination").Select
[A4].Select
Selection.Insert Shift:=xlToRight
[A1].Select
End Sub