You can still use the FIND function, you just need a way to identifiy the
last space. This can be accomplished by using SUBSTITUTE to replace the last
space with a different character. For this example, I'll use the tilde ~
character. Whatever character you use, make sure it is one that would never
occur normally in your data.
=FIND("~",SUBSTITUTE(A1," ","~",LEN(A1)-LEN(SUBSTITUTE(A1," ",""))))
HTH,
Elkar
> Hello people,
>
[quoted text clipped - 9 lines]
>
> Mav.
EuroMaverick - 28 Mar 2007 21:20 GMT
Hello Elkar,
That worked like a charm !
Many thanks,
Mav.
> You can still use the FIND function, you just need a way to identifiy the
> last space. This can be accomplished by using SUBSTITUTE to replace the last
[quoted text clipped - 20 lines]
> >
> > Mav.