Pulling data from a cell in between /

  • Thread starter Thread starter mab2819
  • Start date Start date
M

mab2819

Hi,

I need to extract data that is inbetween slashes in a cell. For instance, in
the example below, I need to grab the 377.51 value.

AA7061555555/377.51/20JUL07/F

How can I accomplish this?

TIA,
mab
 
That is SO PRETTY. Thank you!
--
mab


Bob Phillips said:
=--MID(A1,FIND("/",A1)+1,FIND("/",A1,FIND("/",A1)+1)-FIND("/",A1)-1)

--
__________________________________
HTH

Bob
 
Back
Top