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.
Public Function getNum(myField)
Dim S As String, l As Long, x As String
If Trim(myField & "") = "" Then
getNum = myField
Exit Function
End If
For l = 1 To Len(myField)
x = Mid(myField, l, 1)
If x >= "0" And x <= "9" Then
S = S & x
End If
Next
getNum = S
End Function
If DCount("[Unitno]", "Unit Works Order Header", "[Internal No] = '" & myfield & "'") > 0 Then