Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sPrev = ""
With ActiveSheet.UsedRange
For r = .Row to .Row + .Rows.Count - 1
sThis = Cells(r, DateColumn).Value
If sThis <> sPrev AND sPrev <> "" Then _
Activesheet.HPageBreaks.Add Before:=Cells(r, DateColumn)
sPrev = sThis
Next
End With