Extract Information from a cell.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Was just wondering if it was possible to extract partial information from a cell.
Ex.
A
1 Doe, John

How would I extract just the first name from cell 1,A to be used in another worksheet?

Thanks
 
Chad said:
Was just wondering if it was possible to extract partial information from a cell.
Ex.
A
1 Doe, John

How would I extract just the first name from cell 1,A to be used in another worksheet?

Thanks

Assuming that there is only one space and you want what is to the right of
that space:
=RIGHT(A1,LEN(A1)-FIND(" ",A1))

For more information, look up "text functions" in Help.
 
Try

=RIGHT(D3,LEN(D3)-SEARCH(",",D3,1)-1)

Replace cell D3 with whatever cell has the name.
 

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

Back
Top