Extracting certain text from text string

  • Thread starter Thread starter Haydie-lady
  • Start date Start date
H

Haydie-lady

I have a database list that I export into xls monthly. Once pasted in xls the
list is just one column w/ several rows a text string (see below). I need to
extract the description only. Please help. see below

Rev.2 Doc-5A - Safety in the Workplace 3/26/04

all I want to extract into another cell is "Safety in the Workplace"
 
Do you import in Excel, or do you paste in Excel? Also, if you import, why
not do so as a fixed length record, and set the column widths to seperate the
text into columns? What program are you importing from? If you copy ad
paste, what are the chances of rather importing?

--
HTH

Kassie

Replace xxx with hotmail
 
A1 =Rev.2 Doc-5A - Safety in the Workplace 3/26/04

B1, formula :

=MID(A1,FIND(" -",A1)+3,FIND("/",A1)-FIND(" -",A1)-5)

Regards
Bosco
 
Back
Top