Hello!
I need to pull out some info from a text string with the following structure:
BRAND/PROJECT NAME/INITIATIVE/MARKET/Ex FACTORY/
I'd like to paste this text and have in the adjacent columns the text for "Market" and "Factory
The pattern shows that factory will always be the last string and the market will be the string before last one. Meaning that the below can happen:
BRAND/PROJECT NAME/INITIATIVE/MARKET/Ex FACTORY/
BRAND/PROJECT NAME/MARKET/Ex FACTORY/
So the order is from right to left.
I've been able to pull out "Factory" by using this formula:
=LEFT(RIGHT(A1,LEN(A1)-FIND("Ex ",A1)-2),4)
However, as there are several "/" in the string, I don't know if there is a way to ask excel to seach the "second ocurrence of the symbol / from the right" or something like that to work with.
Any ideas? Many thanks and the best weekend to you all!