display text to the right of equal bar

Dojorgen

Board Regular
Joined
Mar 1, 2018
Messages
59
I have this string of text, what formula could i have to display to the right of the text to the left of .job

so it would display MVAK0-462-A0



< Ascii JobID = MVAK0-462-A0.job >

<tbody>
</tbody>
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Hi,

A single sample may Not be a true representation of all your possible Text strings...

Based on this sample, a couple of formulas:


Book1
ABC
1< Ascii JobID = MVAK0-462-A0.job >MVAK0-462-A0MVAK0-462-A0
Sheet251
Cell Formulas
RangeFormula
B1=TRIM(MID(A1,FIND("=",A1)+1,FIND(".",A1)-FIND("=",A1)-1))
C1=TRIM(MID(SUBSTITUTE(A1,".",REPT(" ",99)),FIND("=",A1)+1,99))
 
Upvote 0
If you're lead-in text is always the same:
=SUBSTITUTE(MID(A1,15,255),".job","")

If it can be different:
=SUBSTITUTE(TRIM(REPLACE(A1,1,FIND("=",A1&"="),"")),".job","")
 
Upvote 0

Forum statistics

Threads
1,214,944
Messages
6,122,387
Members
449,080
Latest member
Armadillos

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