Combine more than 2 text in a mid-find formula

sujittalukde

Well-known Member
Joined
Jun 2, 2007
Messages
520
I am importing data from our accounting software and extracting certain data from one field called “Narration” by using the fllowing formula.

=MID(E2,FIND("to",E2,1)+3,(FIND("as",E2,1)-(FIND("to",E2,1)+3)))

Now in certain cases instead of “as”, two more words is used viz “towards” or “twds”

If the txt contains these two words, the above formula gives an error.
So I want to incorporate the same into one formula so that error does not come and the formula should give correct result whether the text contains “as”, “towards” or “twds”.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Thanks for the reply. But one more thing is to be sdjusted.
In place of "to" two morw words to be added viz:
"to", "of", and "through"
Please incorporate these also.
 
Upvote 0
=MID(E2,MIN(FIND({"to","of","through"},E2&"toofthrough"))+3,MIN(FIND({"as","towards","twds"},E2&"astowardstwds"))-MIN(FIND({"to","of","through"},E2&"toofthrough"))+3)
 
Upvote 0

Forum statistics

Threads
1,216,337
Messages
6,130,106
Members
449,558
Latest member
andyamcconnell

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