Extract text in between numbers

cus701

New Member
Joined
Dec 7, 2016
Messages
2
Hi,

I have a list of data that contains numbers and text all in one cell and need to extract the text only as per examples below: am trying to automatically extract text in between numbers as per example below:

04-12-2016 13:03:33 50615512 35699217788Test misrah04-12-2016 13:04:04 50616000 35699217788

from this data I need to extract "Test misrah"

06-12-2016 12:03:34 50615512 35698132589a

from this data I need to extract "a"


06-12-2016 12:05:06 50615512 35699961001TEST

from this data I need to extract "TEST"

All data is in the same coloumn.

Any help please?

Thanks.

Malcolm

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Try this:

=LEFT(MID(A1,41,255),MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},MID(A1,41,255)&"0123456789"))-1)
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,772
Members
449,049
Latest member
greyangel23

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