Is there a way using a cell formula in Excel to find the index of the first non-alpha character in a referenced cell?
I've imported data into Excel which has a column that looks like this:
<some text I don't want in the derived cell><some text that prepends the text I want and is always constant>TheTextIWant<Some non-alpha character><some other characters that may be alpha or not>
I'm trying to create a formula that so far looks like this:
=MID(<cell reference>, SEARCH("<prepended text>, <cell reference>) + <length of prepended text>, ??)
Where ?? is some sub-formula that finds the first non-alpha character after "TheTextIWant"
Is this possible?