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.
Sub Macro1()
'
' Macro1 Macro
counter = 6
vcol = 1
Dim sh As Worksheet
For Each sh In Worksheets
if sh.name <> "summary" then
Sheets("summary").Cells(counter, vcol + 1).Formula = "=" & sh.name & "!" & Sheets(sh).Range("a1").Address
Sheets("summary").Cells(counter, vcol + 2).Formula = "=" & sh.name & "!" & Sheets(sh).Range("a2").Address
Sheets("summary").Cells(counter, vcol + 4).Formula = "=" & sh.name & "!" & Sheets(sh).Range("c4").Address
Sheets("summary").Cells(counter, vcol + 5).Formula = "=" & sh.name & "!" & Sheets(sh).Range("c5").Address
Sheets("summary").Cells(counter, vcol + 6).Formula = "=" & sh.name & "!" & Sheets(sh).Range("c6").Address
Sheets("summary").Cells(counter, vcol + 7).Formula = "=" & sh.name & "!" & Sheets(sh).Range("c7").Address
Sheets("summary").Cells(counter, vcol + 8).Formula = "=" & sh.name & "!" & Sheets(sh).Range("c8").Address
Sheets("summary").Cells(counter, vcol + 9).Formula = "=" & sh.name & "!" & Sheets(sh).Range("c9").Address
Sheets("summary").Cells(counter, vcol + 10).Formula = "=" & sh.name & "!" & Sheets(sh).Range("c10").Address
Sheets("summary").Cells(counter, vcol + 11).Formula = "=" & sh.name & "!" & Sheets(sh).Range("d4").Address
Sheets("summary").Cells(counter, vcol + 11).Formula = "=" & sh.name & "!" & Sheets(sh).Range("d5").Address
Sheets("summary").Cells(counter, vcol + 11).Formula = "=" & sh.name & "!" & Sheets(sh).Range("d6").Address
counter = counter + 1
end if
Next sh
End Sub
Sub Macro1()
'
' Macro1 Macro
counter = 6
vcol = 1
Dim sh As Worksheet
For Each sh In Worksheets
if sh.name <> "summary" then
Sheets("summary").Cells(counter, vcol + 1).Formula = "=" & sh.name & "!a1"
Sheets("summary").Cells(counter, vcol + 2).Formula = "=" & sh.name & "!a2"
Sheets("summary").Cells(counter, vcol + 4).Formula = "=" & sh.name & "!c4"
Sheets("summary").Cells(counter, vcol + 5).Formula = "=" & sh.name & "!c5"
Sheets("summary").Cells(counter, vcol + 6).Formula = "=" & sh.name & "!c6"
Sheets("summary").Cells(counter, vcol + 7).Formula = "=" & sh.name & "!c7"
Sheets("summary").Cells(counter, vcol + 8).Formula = "=" & sh.name & "!c8"
Sheets("summary").Cells(counter, vcol + 9).Formula = "=" & sh.name & "!c9"
Sheets("summary").Cells(counter, vcol + 10).Formula = "=" & sh.name & "!c10"
Sheets("summary").Cells(counter, vcol + 11).Formula = "=" & sh.name & "!d4"
Sheets("summary").Cells(counter, vcol + 12).Formula = "=" & sh.name & "!d5"
Sheets("summary").Cells(counter, vcol + 13).Formula = "=" & sh.name & "!d6"
counter = counter + 1
end if
Next sh
End Sub