Try this:
Left([Last Name],InstrRev(RTrim([Last Name]),space(1))-1)
The -1 in the Left() Function can run into problems when there is no segmentation in Lastname.
I think a Public Function, like the following code, in the Standard Module will be safer and easier to use:
Public Function...