Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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