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.
Dim sTmp As String, iRow As Long
Dim iStep As Long, iEnd As Long
Dim i As Long, iRemoved As Long
iStep = 5 'step
iEnd = 25 'last row
iRemoved = 0
For i = iStep To iEnd Step iStep
iRow = i - iRemoved
Rows(iRow & ":" & iRow).Delete Shift:=xlUp
iRemoved = iRemoved + 1
Next i