I have a field (Called OWNER) that contains the following:
LastName FirstName MiddleInitial Status
everything is separated by spaces and there are no commas after the LastName. I want just the FirstName and MiddleIntial, the status always starts with HRS and may or may not have additional characters. Right now I have:
Right(Trim([tblOutput.OWNER]),Len(Trim([tblOutput.OWNER]))-InStr(1,[tblOutput.OWNER]," "))
But I can't seem to get rid of the additional text containing the 'HRS'. I am sure it is something I am doing wrong when I try to strip the HRS off the above result.