Public Function extractWord(theString As String, theWord As String) As String
Dim wordLoc as Integer
wordLoc = InStr(theString, theWord)
If wordLoc <> 0 Then
extractWord = Mid(theString, wordLoc, Len(theWord))
Else
extractWord = "False"
End If
End Function