Try this:
Sub x()
Dim wks As Worksheet
Const sWhat As String = "Project"
Dim cell As Range
Dim sAdr As String
Set wks = ActiveSheet
With wks
.ResetAllPageBreaks
With .Columns(1)
Set cell = .Find(What:=sWhat, After:=.Cells(.Cells.Count), _
LookIn:=xlValues, LookAt:=xlPart, _
SearchDirection:=xlNext, SearchFormat:=False, _
MatchCase:=False, MatchByte:=False)
If Not cell Is Nothing Then
sAdr = cell.Address
Do
If cell.row > 1 Then wks.HPageBreaks.Add Before:=cell
Set cell = .FindNext(cell)
Loop Until cell.Address = sAdr
End If
End With
End With
End Sub
Bookmarks