Last Name:

=LEFT(A1,FIND(",",A1)-1)

First Name:

=MID(A1,FIND(",",A1)+2,999)

HTH
Jason
Atlanta, GA

>-----Original Message-----
>I need to switch a names list in each cell:
>[LAST_NAME, FIRST_NAME]
>to
>[FIRST_NAME LAST_NAME] (no comma),
>preferably into two cells:
>[FIRST_NAME] [LAST_NAME]
>.
>