Forum Discussion
Simon_Fish
May 10, 2024Copper Contributor
Extract a portion of text
Hi. For the life of me, I can't work out the formula to extract a portion of text before and after a text delimiter. Column A - First part of text in cell only - SOLVED Column B - Raw Data Column...
- May 10, 2024
Simon_Fish To extract the text between two delimiters you need to combine TEXTBEFORE and TEXTAFTER.
Try this in column C:
=TEXTBEFORE(TEXTAFTER(B5," - ")," - ")
Riny_van_Eekelen
May 10, 2024Platinum Contributor
Simon_Fish To extract the text between two delimiters you need to combine TEXTBEFORE and TEXTAFTER.
Try this in column C:
=TEXTBEFORE(TEXTAFTER(B5," - ")," - ")
Simon_Fish
May 10, 2024Copper Contributor