Hello,
I have a column of data containing special character codes within brackets. Each cell may contain more than once occurrence of a bracketed code. For example:
Cell D2:
CARSTA K[OUML]HLER, J[UUML]RGEN M[UUML]LLER, IRIS KLEINE, ANDREAS PF[UUML]TZNER
I need a formula to return all occurrences of the bracketed code within the cell. I have the following formula that works, but only returns one instance within a cell and I need to find them all.
=MID(D2,FIND("[",D2)+1,FIND("]",D2)-FIND("[",D2)-1)
Any guidance would be appreciated!
Thanks!
I have a column of data containing special character codes within brackets. Each cell may contain more than once occurrence of a bracketed code. For example:
Cell D2:
CARSTA K[OUML]HLER, J[UUML]RGEN M[UUML]LLER, IRIS KLEINE, ANDREAS PF[UUML]TZNER
I need a formula to return all occurrences of the bracketed code within the cell. I have the following formula that works, but only returns one instance within a cell and I need to find them all.
=MID(D2,FIND("[",D2)+1,FIND("]",D2)-FIND("[",D2)-1)
Any guidance would be appreciated!
Thanks!