Something like this:
Sub Superdonk(): Dim ws As Worksheet, wf As Worksheet, c As Long, SNames As String, n As Integer
SNames = Array(" ", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW")
Set wf = Sheets("Final")
For n = 1 To UBound(SNames): Set ws = Sheets(SNames(n))
ws.Range(Range("E7"), Range("E500").End(xlUp)).copy
c = c + 1: wf.Cells(2, c).Insert Shift:=xlDown
ws.Range(Range("D7"), Range("D500").End(xlUp)).copy
c = c + 1: wf.Cells(2, c).Insert Shift:=xlDown
ws.Range("O5").copy
wf.Range("B500").End(xlUp).Offset(2, 0).PasteSpecial Paste:=xlPasteValues
Next n
End Sub
Rewrite the reds
Bookmarks