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.
Sub FormatRows()
Dim lRow As Long
For lRow = 4 To Cells(1, 1).CurrentRegion.Rows.Count Step 4
If lRow / 8 = Int(lRow / 8) Then
Rows(lRow).Font.Bold = False
Rows(lRow).Font.Italic = True
Else
Rows(lRow).Font.Bold = True
Rows(lRow).Font.Italic = False
End If
Next
End Sub