Hi ernesto
try this
c1 is the cell with your number.
=RIGHT(LEFT(C1,6),2)
steve
Hi Ernesto
There are a few ways this can be done.
1. Select your numbers then go to Data>Text to columns.
2. Select "Fixed Width" and click Next.
3. Click where you want your "Line Break" ie; after "A301" Click Next.
4. Select you destination and Format and click finish. That's it!
...or in B2 put this formula
=VALUE(SUBSTITUTE(A1,"A301",""))
Copy down as far as needed then copy and Pastespecial as Values over the top.
Dave
OzGrid Business Applications
If Steve's interpretation is right on track, the following is an alternative to his formula:
=VALUE(MID(A1,5,2))
VALUE converts the result of MID into a number.
The option Data|Text to Columns can also be used with the interpretation in question.
Aladin
Thanks guys!
I did it by using the columns to text, and
specifying the column widths. I can't believe
I didn't even think of that!
But thanks so much!
This is such a great forum!
Ernesto