How can I extract characters from inside a cell?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to extract portions of cell contents (i.e. B109912345 - i need the
1099 out of this info) and prot it to the cell to the right (next column)
 
If it is always going to be those characters (i.e. from the 2nd to the
5th inclusive), then use this:

=MID(A1,2,4)

If you need it to be numeric, then just multiply by 1.

Hope this helps.

Pete
 
Thanks for the tip, but what if i have an entire column to extract data from?
is there a way to automate this task?
 
=MID(A1,2,4) if you want it as text or =--MID(A1,2,4) if you want it as a
number.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top