Sub Deplace()
Dim c As Range, i&
With ActiveSheet
Set c = Columns(1).Find("E", , xlValues, xlWhole)
If c Is Nothing Then Exit Sub
For i = 1 To .HPageBreaks.Count
If .HPageBreaks(i).Location.Row > c.Row Then
.HPageBreaks.Add c
If i < .HPageBreaks.Count Then .HPageBreaks(i + 1).Delete
Exit For
End If
Next
End With
End Sub