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 AlphaOnly(sStr As String) As String
Dim sByte As String
For i = 1 To Len(sStr)
sByte = Mid(sStr, i, 1)
Select Case sByte
Case "a" To "z", "A" To "Z"
AlphaOnly = AlphaOnly & sByte
End Select
Next
End Function