View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Leonhardtk Leonhardtk is offline
external usenet poster
 
Posts: 26
Default Extract first second "word" from a Cell..

Perfect. I finally figured out how/why this works...and my brain hurts!

Thanks!

KSL.

"Teethless mama" wrote:

=MID(A1,FIND(" ",A1)+1,FIND(" ",A1,FIND(" ",A1)+1)-FIND(" ",A1)-1)


"Leonhardtk" wrote:

I need to extract the second "word" from a Cell.

The data comes from a database, which I do have some control over. I'm
importing into Excel so that I can create new "elements" in order to do
charts.

One column, which seems so simple, is giving me problems.

The first two words in a column will always look like this:

PM Smith asdfasdfasfasdf (where asdf... is free text.)

I want extract the "Name" and create a new column with this value. I'm
hoping to avoid creating a bunch of nested "IF" statements searching for all
possible names.

Thanks,

KSL