Link to home
Start Free TrialLog in
Avatar of dlewis61
dlewis61Flag for United States of America

asked on

Excel: First name first and Comma deletion

Hall, Bill
jones, Marcia
Smith, Scott

in excel, how do I make first name first and get rid of the commas?

D
Avatar of S.A.L.F
S.A.L.F
Flag of United Kingdom of Great Britain and Northern Ireland image

In 2013 you can use flash fill simply by putting the name to correct way next to the first row and clicking the flash fill button.

In formula it's:-

=CONCATENATE(RIGHT(A1,LEN(A1) - FIND(",",A1) - 1)," ",LEFT(A1,LEN(A1) - FIND(",",A1) - 1))
ASKER CERTIFIED SOLUTION
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Russell, for some reason your formula leaves the comma at the end of "Marsha Jones,".
It also changes "Diddlehopper, John" to  "John Didd".
Avatar of dlewis61

ASKER

I find that it leaves a zero...
I find that it leaves a zero...
What does?

If there's a problem with my code then please attach your workbook.
OMG Can't believe it!! The code worked!! Thanks
D
You're absolutely right I made a mistake there, here is the correction:-

=CONCATENATE(RIGHT(A1,LEN(A1) - FIND(",",A1) - 1)," ",LEFT(A1,FIND(",",A1)-1))
You're welcome and I'm glad I was able to help.

In my profile you'll find links to some articles I've written that may interest you.
Marty - MVP 2009 to 2014
Thank you!