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.
Option Explicit
Sub Flag_ColumnA_NA()
Dim rngWork As Range
Dim c As Range
Set rngWork = Intersect(Range("A1:A65536"), ActiveSheet.UsedRange)
For Each c In rngWork
If IsError(c.Value) Then
c.EntireRow.Font.ColorIndex = 3
Else
c.EntireRow.Font.ColorIndex = 0
End If
Next c
Set rngWork = Nothing
End Sub