Sub Adam18()
Dim c As Range
On Error Resume Next
With Intersect(Range("F:F"), ActiveSheet.UsedRange)
For Each c In .SpecialCells(xlCellTypeFormulas, xlErrors)
On Error GoTo 0
If c Is Nothing Then Exit Sub
If c.Value = CVErr(xlErrNA) Then
MsgBox "error"
Exit For
End If
Next c
End With
End Sub