Returning 10 digits from text string?

mucusboy

New Member
Joined
Oct 25, 2016
Messages
13
I have a formula which has worked perfectly for some time, but I now have some variables in my source data and am struggling to amend it.

Essentially I need to search a string of text and return a 10 digit number. Previously this always started with a “41” so I could use the formula:

=IFERROR(LEFT(TRIM(RIGHT($W4,(LEN($W4)-SEARCH("41",$W4)+1))),10),"")

There’s probably a cleaner way of doing this I know…

However, the 10 digit number may now start with either a “41”, “42”, “91” or “92”. I am really not sure how I can amend to find the solution. Can anyone help?
:confused:
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Try:

=MID($W4,MIN(IFERROR(SEARCH(4,$W4),1000),IFERROR(SEARCH(9,$W4),1000)),10)
 
Upvote 0
Or try this
Code:
[COLOR=#444444][FONT=Calibri]=MID($W4,MIN(FIND({0,1,2,3,4,5,6,7,8,9},[/FONT][/COLOR][COLOR=#444444][FONT=Calibri]$W4[/FONT][/COLOR][COLOR=#444444][FONT=Calibri]&{0,1,2,3,4,5,6,7,8,9})),10)[/FONT][/COLOR]
Cheers
Sergio
 
Upvote 0
You can Try this one. Worked for me last time I checked:

=MID(W4,MIN(IF((ISNUMBER(MID(W4,ROW(INDIRECT("1:"&LEN(W4))),1)+0)*ROW(INDIRECT("1:"&LEN(W4)))),ISNUMBER(MID(W4,ROW(INDIRECT("1:"&LEN(W4))),1)+0)*ROW(INDIRECT("1:"&LEN(W4))))),10)
Confirm with Ctrl+Shift+Enter
 
Upvote 0
Try:

=MID($W4,MIN(IFERROR(SEARCH(4,$W4),1000),IFERROR(SEARCH(9,$W4),1000)),10)

Hi Phuoc,
Thanks so much for this, it is nearly perfect.

I didn't account for the fact there are 2 numbers in the string, so it is not always calling the correct one. I figured out if I was searching for “4100”, “4200”, “9100” or “9200” it would always work, but I couldn't manage to update the formula to make this work. This was my attempt:

=MID($X2,MIN(IFERROR(SEARCH(4100,$X2),1000),IFERROR(SEARCH(4200,$X2),1000),iferror(search(9100,$x2,111),iferror(search(9200,$x2,111),10))))

Am I far off or is this even possible?
 
Upvote 0
You can Try this one. Worked for me last time I checked:

=MID(W4,MIN(IF((ISNUMBER(MID(W4,ROW(INDIRECT("1:"&LEN(W4))),1)+0)*ROW(INDIRECT("1:"&LEN(W4)))),ISNUMBER(MID(W4,ROW(INDIRECT("1:"&LEN(W4))),1)+0)*ROW(INDIRECT("1:"&LEN(W4))))),10)
Confirm with Ctrl+Shift+Enter

Thanks for your reply! I couldn't get this to work and kept returning #VALUE ! :(
 
Upvote 0
Or try this
Code:
[COLOR=#444444][FONT=Calibri]=MID($W4,MIN(FIND({0,1,2,3,4,5,6,7,8,9},[/FONT][/COLOR][COLOR=#444444][FONT=Calibri]$W4[/FONT][/COLOR][COLOR=#444444][FONT=Calibri]&{0,1,2,3,4,5,6,7,8,9})),10)[/FONT][/COLOR]
Cheers
Sergio

Really appreciate your response. This is pulling our 10 digits but unfortunately I didn't realise that I have multiple numbers throughout the text string so it's not always finding the one I was after. I need to just find them if they start with “4100”, “4200”, “9100” or “9200”
 
Upvote 0
How about the array formula:

=MID(TRIM(W4),MIN(IFERROR(FIND({41,42,91,92},W4),"")),10)

This will not work if you dont enter CTRL-SHIFT-ENTER
 
Upvote 0

Forum statistics

Threads
1,214,952
Messages
6,122,454
Members
449,083
Latest member
Ava19

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