Sub Delete_Page_Rows()
Dim FoundPage As Range
Set FoundPage = ActiveSheet.Cells.Find(What:="Page", _
LookIn:=xlValues, _
LookAt:=xlPart, _
MatchCase:=False)
Application.ScreenUpdating = False
Do Until (FoundPage Is Nothing)
FoundPage.EntireRow.Resize(8).Delete
Set FoundPage = ActiveSheet.Cells.Find(What:="Page")
Loop
Application.ScreenUpdating = True
MsgBox "Delete ""Page"" rows complete."
End Sub