trim formula

luvbite38

Active Member
Joined
Jun 25, 2008
Messages
368
Hi guys,

is there a simple formula to convert "67673263-FB10-4231-A60D-4B5354674041_photo-1742912936.jpeg.jpg" into 1742912936?

Please help:eek:


Thanks in advance
LB
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
CTRL + H

Find *photo-
Replace all (leave blanc)


After that
Find .jp*
Replace all (leave blanc)
 
Upvote 0
If your sample is correct representation of all data you have then:
=TRIM(RIGHT(SUBSTITUTE(LEFT(SUBSTITUTE(A1,".",REPT(" ",100)),100),"-",REPT(" ",100)),100))
should work.
 
Upvote 0
If your sample is correct representation of all data you have then:
=TRIM(RIGHT(SUBSTITUTE(LEFT(SUBSTITUTE(A1,".",REPT(" ",100)),100),"-",REPT(" ",100)),100))
should work.
A different, but similarly constructed, formula that also works...

=TRIM(MID(SUBSTITUTE(RIGHT(SUBSTITUTE(A1,"-",REPT(" ",300)),300),".",REPT(" ",300)),1,300))
 
Upvote 0
Yeah. In fact if there are no leading zeroes then this will work as well
=RIGHT(SUBSTITUTE(LEFT(SUBSTITUTE(A1,".",REPT(" ",100)),100),"-",REPT(" ",100)),100)+0
 
Upvote 0

Forum statistics

Threads
1,217,486
Messages
6,136,918
Members
450,032
Latest member
lant69

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