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.
Function CountNotFormula(rng as range)
For Each c In rng
With c
If CStr(.Value) = .Formula Then
CountNotFormula = CountNotFormula + 1
End If
End With
Next
End Function