Excel formula to extract numbers from text

Lee733

New Member
Joined
Jan 22, 2018
Messages
24
Office Version
  1. 365
Platform
  1. Windows
I couldn't get these formulas to work:

=MIN(FIND({0,1,2,3,4,5,6,7,8,9},A4&"0123456789"))
=MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A5&"0123456789"))
=RIGHT(A6,SUM(LEN(A6)-LEN(SUBSTITUE(A6,{"0","1","2","3","4","5","6","7","8","9"},""))))

<tbody>
</tbody>


Data starting in A4:

Agnes Twp, Fordville SD, Niag Fire - 0104-8
Agnes Twp, Fordville SD, Ink Fire - 0104-09
Agnes Twp, Larimore SD - 0107

<tbody>
</tbody>


I would like a formula that would return

0104-8
0104-9
0107

Any idea what I am doing wrong?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
You're really close. The first two formulas find the position of the first number, but doesn't return the text. For that you need a wrapper function. This will work:

=MID(A4,MIN(FIND({0,1,2,3,4,5,6,7,8,9},A4&"0123456789")),LEN(A4))

Enter formula and copy down. You don't need the other one's.

Edit: by the way, the last formula works for me only on the last one. It doesn't work for all because the substitute function can remove numbers from the test string and potentially decrease it by 1, which is why sometimes it'll be missing a preceding number.
 
Last edited:
Upvote 0
If the last space character is always immediately in front of the numbers you want to retrieve (as your examples all show), then you can use this simple formula to retrieve them...

=TRIM(RIGHT(SUBSTITUTE(A4," ",REPT(" ",200)),200))
 
Last edited:
Upvote 0
When I try to use this formula, I get the following error in Excel:

There's a problem with this formula.

Not trying to type a formula?
When the first character is an equal (=) or minus (-) sign, Excel thinks it's a formula:

It highlights A4,MIN in the formula.
 
Upvote 0
When I try to use this formula, I get the following error in Excel:

There's a problem with this formula.

Not trying to type a formula?
When the first character is an equal (=) or minus (-) sign, Excel thinks it's a formula:

It highlights A1," in the formula.
 
Upvote 0
When I try to use this formula, I get the following error in Excel:

There's a problem with this formula.

Not trying to type a formula?
When the first character is an equal (=) or minus (-) sign, Excel thinks it's a formula:

It highlights A4,MIN in the formula.
I don't know if you tried the formula I posted in Message #3 yet, but your comment above appears to be directed at Aladin's formula... you say it highlights A4,MIN but that is not what Aladin posted for that part of his formula... his formula at that point reads A4,1,MIN... note the ,1 in the middle.
 
Upvote 0
Formulas using FIND should work as advertised. Try to copy-and-paste once more. The formula must go in a cell other than A4.
 
Upvote 0

It highlights A1," in the formula.

Ah, I'll bet your delimiter for formulas is a semi-colon, not a comma, correct? If so, try these...

My Formula (requires the space in front of the number)
------------------------------------------------------------------------
=TRIM(RIGHT(SUBSTITUTE(A4;" ";REPT(" ";200));200))

Aladin's Formula
-----------------------------------------
=REPLACE(A4;1;MIN(FIND({0,1,2,3,4,5,6,7,8,9};A4&"0123456789"))-1;"")

I am not 100% sure of Aladin's formula because the array constant can use both a comma and a semi-colon as part of its syntax in my computer's locale settings, so it is not clear to me what to do with those commas. If what I posted doesn't work for Aladin's formula, then try changing those commas to semi-colons as well.
 
Upvote 0
I tried changing to a semi-colon, and that did not work.
 
Upvote 0

Forum statistics

Threads
1,215,202
Messages
6,123,625
Members
449,109
Latest member
Sebas8956

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top