Lookup the INSTR function, and MID
Mid([YourField],Instr(1,[YourField]," ") +1)
However, I would suggest you check to see if there is a space in the string
first, either using criteria or an IIF statement
IIF(Instr(1,[YourField]," ") > 0, Mid([YourField],Instr(1,[YourField]," ") +1))
> Here is aome more info:
> I want to delete the first word in one field
[quoted text clipped - 4 lines]
> Any help will be very much appreciated
> Aron