W
Wilfred
I exported my Contacts to a CSV file. I need to concatenate the name fields
so that I can import the file to my cell phone alphabetically by last name.
The program I am using forces me to import Contacts my mapping all the
"name" fields in the CSV file into one single field. This results in:
Ann A. Zimmerman
Betty Q. Smith
Bradford Nigel Cartwright
Charles J. Jones
David Brown
instead of:
Brown, David
Cartwright, Bradford Nigel
Jones, Charles J.
Smith, Betty Q.
Zimmerman, Ann A.
Ideally, I would like to convert:
FirstName MiddleName LastName
to
LastName, FirstName MiddleName
I am NOT a programmer. Is there a simple way to do this?
so that I can import the file to my cell phone alphabetically by last name.
The program I am using forces me to import Contacts my mapping all the
"name" fields in the CSV file into one single field. This results in:
Ann A. Zimmerman
Betty Q. Smith
Bradford Nigel Cartwright
Charles J. Jones
David Brown
instead of:
Brown, David
Cartwright, Bradford Nigel
Jones, Charles J.
Smith, Betty Q.
Zimmerman, Ann A.
Ideally, I would like to convert:
FirstName MiddleName LastName
to
LastName, FirstName MiddleName
I am NOT a programmer. Is there a simple way to do this?