Extract numeric part of alphanumeric cell

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

Guest

Cell AR12 has a value that reads 'Visit 6 GWP'.
In an adjacent cell, I would like to extract the numeric value of this text
string.
Any ideas re how I can do this through the use of a formula?
 
Try this:

=MID(AR12,7,1)*1

the *1 term converts it to a number - omit if you want it to be text.

Hope this helps.

Pete
 
=LOOKUP(10^10,--MID(A1,MIN(FIND({0,1,2,3,4,5,6,7,8,9},A1&"0123456789")),ROW(INDIRECT("1:255"))))

Data in A1
 

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