A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
An idea which springs to mind is to use INDIRECT for great ease of formula propagation
In your summary sheet:
In B1 across, list the sheetnames, eg: Sheet1, Sheet2, etc
In A2 down, list the specific cell references to link to in each sheet, eg: B2, E5, K9, etc
Place this in B2: =INDIRECT("'"&B$1&"'!"&$A2)
Copy across and fill down to populate it all in a single smooth stroke
You can run the sub below (in a new sheet) to easily list all 60 sheetnames in one swoop. Then just copy the sheetnames n paste special > transpose into B1 across in your summary sheet
Sub ListSheetNames()
Dim wkSht As Worksheet
Range("B2").Select
For Each wkSht In Worksheets
Selection = wkSht.Name
ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
Next wkSht
End Sub