Text to columns to split on a delimeter such as your Comma,
Or a couple of formulas to do this in one
to get First Name
=PROPER(TRIM(RIGHT(A1,LEN(A1)-FIND(",",A1))))
to get last name
=PROPER(TRIM(LEFT(A1,FIND(",",A1)-1)))
but this will only work for the data in the above format and without any errors
post back if you have any more questions