Extract numeric part of alphanumeric cell

S

Sarah (OGI)

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?
 
P

Pete_UK

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
 
T

Toppers

=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
 
Top