Help with MID formula

L

Luc

Hi,

I've managed to extract some text from a string, but i want to convert this
to a number now.

So for example:

Cell A1 has "Adj001"

I used =MID(A1,4,3) to extract 001, but excel views this as text. can i
convert 001 to a number?

Thanks,

Luc
 
F

Frank Kabel

Hi
then your cell A1 contains other values as well. Works for me.
You may also try:
=VALUE(MID(A1,4,3))
 
Top