Excel Question

  • Thread starter Thread starter Guest
  • Start date Start date
Highlight the column, then do Data > Text to columns..........using space as
the delimiter

Vaya con Dios,
Chuck, CABGx3
 
To remove the first word:

=LEFT(A1,FIND(" ",A1)-1)

To remove the second (and last) word:

=RIGHT(A1,LEN(A1)-FIND(" ",A1))
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================



How to seperate or remove one of two words from a cell
 

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