That helps a little. But what if the starting character and the number of
characters differs?
Sally Joe Johnson
Suzanne Peggy Jefferson
Then use FIND or SEARCH to find the starting point for you MID

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
> That helps a little. But what if the starting character and the number of
> characters differs?
[quoted text clipped - 14 lines]
>> >
>> > ex. - I'd like to change Jane Sue Smith to show just Sue
=MID(A1,FIND(" ",A1)+1,FIND(" ",MID(A1,FIND(" ",A1)+1,999))-1)
--
David Biddulph
> That helps a little. But what if the starting character and the number of
> characters differs?
[quoted text clipped - 14 lines]
>> >
>> > ex. - I'd like to change Jane Sue Smith to show just Sue
Reitanos - 20 May 2008 17:20 GMT
As was said already, MID, RIGHT, LEFT, and FIND are great for taking
pieces out of strings, but don't forget to error check (ISERROR is
handy). People with no middle name cause errors - and pray that Cher
does not show up in your list ;)
> =MID(A1,FIND(" ",A1)+1,FIND(" ",MID(A1,FIND(" ",A1)+1,999))-1)
> --
[quoted text clipped - 23 lines]
>
> >> > ex. - I'd like to change Jane Sue Smith to show just Sue