Forum Discussion
BAWrites
Jan 22, 2024Copper Contributor
Split a string by delimited characters and choose nth position in string
Looking for an excel formula that will take a string similar to this Instance >> Chain >> TimeZone >> State >> City >> Number >> Number2 And be able to output only the first "Number" occurren...
HansVogelaar
Jan 22, 2024MVP
Let's say the string is in A2.
In another cell, for example B2:
=--INDEX(TEXTSPLIT(A2, " >> "), 6)
This can be filled down.