splitting content of a field

E

eintpc5146

How do you spit one field containing [name, last name] into two fields-- one
with name and the other with last name.
 
D

Dave Peterson

If there's a comma separating the names, then I'd:

Select the range
Data|Text to columns
Delimited by comma
and plop the output into a couple of unused columns (insert 2 adjacent columns
first???)
How do you spit one field containing [name, last name] into two fields-- one
with name and the other with last name.
 
O

ozgrid.com

Text to Columns is your best bet. BUT, if want formulas

=LEFT(A1,FIND(" ",A1)-1) will extract 1st name
=MID(A1,FIND(" ",A1)+1,256) will extract surname.
 

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

Top