MID Formula

C

carl

I am trying to find a formula that will look at this 12 character string:

BOX00A8Y0L39

And return the 10th and 11th characters.

Thank you in advance.
 
D

Dave Peterson

=mid(a1,11,2)
maybe???

or
=--mid(a1,11,2)

if you want that 39 to be treated as a number--not text.
 
Top