I had actually forgotten about this when I last posted - though I still think Text-To-Columns is probably the easiest way to go - but Chip Pearson has some hefty formulas that will handle even complex names:
From
Last Name:
[COLOR=blue white]=LEFT(A2, IF(ISERROR(FIND(",", A2, 1)), LEN(A2), FIND(",", A2, 1) - 1))[/color]
First Name:
[COLOR=blue white]=TRIM(IF(ISERROR(FIND(",", A2, 1)), A2, MID(A2, FIND(",", A2, 1) + 1, IF(ISERROR(FIND(" ", A2, FIND(",", A2, 1) + 2)), LEN(A2), FIND(" ", A2, FIND(",", A2, 1) + 2)) - FIND(",", A2, 1))))[/color]
Middle Name:
[COLOR=blue white]=TRIM(RIGHT(A2, LEN(A2) - IF(ISERROR(FIND(" ", A2, FIND(" ", A2, FIND(",", A2 , 1) + 2))), LEN(A2), FIND(" ", A2, FIND(" ", A2, FIND(",", A2, 1) + 2)) - 1)))[/color]
[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]
Help us help you. Please read
FAQ 181-2886 before posting.