Use Instr to find the position of the first space:
PositionOfSpace = Instr(1,namefield," ")
Then use Instr again to find the position of the second space, but start searching the field one character after the first space:
PositionOfSpace = Instr(PositionOfSpace+1, namefield," ").
Keep...