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.
With RS
.MoveFirst
r = 1
c = 1
Do While Not .EOF
If IsNumeric(RS("supervisor")) Then
MsgBox "number" 'houston, we have a date!
Else
MsgBox "text"
End If
.MoveNext
Loop
End With