comma delimited names in columns

R

robbie

Version: 2008
Operating System: Mac OS X 10.5 (Leopard)
Processor: Intel

I want to change a column of names from (Last, First) into two columns of First then Last
 
J

JE McGimpsey

Version: 2008
Operating System: Mac OS X 10.5 (Leopard)
Processor: Intel

I want to change a column of names from (Last, First) into two columns of
First then Last

One way:

A1: Last, First

B1: =TRIM(MID(A1, FIND(",", A1) + 1, 255))

C1: =TRIM(LEFT(A1, FIND(",", A1) - 1))

Copy B1:C1 down as far as needed.

You can then get rid of the formulae by selecting columns B:C, Copy,
then Edit/Paste Special, selecting the Values radio button. Delete
column A to finish.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Value assigned to text 2
saving semicolon-delimited files 2
Formatting cells 2
Excell 1
Scripting in Excel 1
rows and columns in spreadsheet 1
size of window upon opening a spreadsheet 2
organizing by date 4

Top