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.
Left([Field], InStr([Field], " ")-1)
If InStr(strWord, " ") > 0 Then
strWord = Left(strWord, InStr(strWord, " "))
End If
IIf(InStr([FieldName], " ") > 0, Left([FieldName], InStr([FieldName], " ")), [FieldName])