Sub My_List_Of_Cells()
'Modified 12/19/2018 4:47:39 PM EST
Application.ScreenUpdating = False
Dim i As Long
Dim x As Long
x = 1
For i = 1 To Sheets.Count
If Sheets(i).Name <> "Summary" Then
Sheets("Summary").Cells(x, 1).Value = Sheets(i).Cells(8, 2).Value
x = x + 1
End If
Next
Application.ScreenUpdating = True
End Sub