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.
For Each n In Range("A2:A13")
If Not IsNumeric(n) Then
Msgbox "Numeric", vbOKOnly, "What is What"
End If
Next n
Sub CheckForNumerics()
Dim r As Range, s As Range
Set s = Selection
On Error Resume Next
Set r = s.SpecialCells(xlCellTypeConstants, 1)
If Not r Is Nothing Then MsgBox "There are numerics in the selection."
s.Select
End Sub