Extract text to left of certain character - limited to certain number of characters

Country_Calc

New Member
Joined
Feb 14, 2017
Messages
48
Office Version
  1. 365
I need to extract the number to the left of the "/"

Data Example - B4: Innsbruck, University Hospital, (ads, peds), CIC 271, G. Gastl, D. Nachbaur (79 (82) 41/38)

Desired result = 41

The number could be 1 to 3 characters, but any method of getting closer would help.

I found an example on the board that gives me the number to the right of the "/" which works perfectly, but I can't figure out how to apply it to the left. This might not work because the number to the right always ends with a ")".


=TRIM(LEFT(SUBSTITUTE(MID(B4,FIND("/",SUBSTITUTE(B4,")","|",3))+1,
LEN(B4)),")",REPT(" ",LEN(B4))),LEN(B4)))
 
Last edited:

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Yes, there is always a space before the required number.

Tetra201 formula works pretty close to what I need =TRIM(RIGHT(SUBSTITUTE(LEFT(B4,FIND("/",B4)-1)," "," "),3))

Thanks Tetra201.

I can fix issues where single characters return a "(" before the data manually as there are not that many. A better formula would be appreciated though.
 
Upvote 0
This should work for any length number.

=0+TRIM(MID(SUBSTITUTE(B4," ",REPT(" ",LEN(B4))),FIND("/",SUBSTITUTE(B4," ",REPT(" ",LEN(B4))))-LEN(B4),LEN(B4)))
 
Upvote 0
Please try the formula from Post #3 once again -- I forgot that the forum engine trims double spaces.
 
Upvote 0
The one i suggested could be simplified a bit like this:

=0+MID(SUBSTITUTE(B4," ",REPT(" ",99)),FIND("/",SUBSTITUTE(B4," ",REPT(" ",99)))-99,99)
 
Upvote 0
Assuming the text being processed is never longer than 300 characters, this formula should also work...

=0+TRIM(RIGHT(SUBSTITUTE(LEFT(A1,FIND("/",A1)-1)," ",REPT(" ",300)),300))
 
Upvote 0
In post #4 you said
I can fix issues where single characters return a "(" before the data manually as there are not that many


If you actually meant
I can fix issues where single characters return a
) before the data manually as there are not that many

then I think this should work -

Code:
=MID(A1,FIND("/",A1,1)-3,3)+0

Or try this, which I think works for 1, 2, or 3 digit numbers
Code:
=(SUBSTITUTE(MID(A1,FIND("/",A1,1)-3,3),") ","0")+0

Basically it works for situations like this
123/ - 3 digits immediately before the / character
12/ - 1 space character and 2 digits immediately before the / character
) 1/ - 1 close brackets character, 1 space character, and 1 digit immediately before the / character.

Other combinations of characters may well fail.

Edit to add - sorry about the break in the second quote, I can't work out how to change that. It seems to be inserting quote and unquote tags where I don't want them, when I try deleting them it just puts them right back in !
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,785
Messages
6,121,543
Members
449,038
Latest member
Guest1337

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