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.
[blue]Public Function POCheck(Adr As String) As String
If InStr(1, Adr, "P O Box") Then
POCheck = Replace(Adr, "P O Box", "PO Box")
ElseIf InStr(1, Adr, "P.O. Box") Then
POCheck = Replace(Adr, "P.O. Box", "PO Box")
ElseIf InStr(1, Adr, "Post Office Box") Then
POCheck = Replace(Adr, "Post Office Box", "PO Box")
Else
POCheck = Adr
End If
End Function[/blue]