wkbThis = Workbooks.Add
wsThis = wkbThis.Worksheet("Sheet1") ' the target sheet
for each wb in workbooks
select case wb.name
case "SourceBook1.xls".
wb.range("A1:G20").Copy _
Destination:=wsThis.Range("A2")
case "SourceBook2.xls"
wb.range("A1:G20").Copy _
Destination:=wsThis.Range("A25")
end select
' etc for the next four source workbooks
next