I have a multi select cell that contains 4 email address, separated by CHAR(10).
I have been able to isolate the 1st, isolate the 2nd and isolate the 3rd in columns to the right.
1st email is extracted with this formula —>
=IF(FIND(CHAR(10), [Names of Approvers needed]@row ) > 0, LEFT([Names of Approvers needed]@row , FIND(CHAR(10), [Names of Approvers needed]@row ) - 1), [Names of Approvers needed]@row )
2nd email is extracted with this formula —>
=IF(COUNTM([Names of Approvers needed]@row ) > 1, MID([Names of Approvers needed]@row , FIND(CHAR(10), [Names of Approvers needed]@row ) + 1, IF(COUNTM([Names of Approvers needed]@row ) > 2, FIND(CHAR(10), [Names of Approvers needed]@row , FIND(CHAR(10), [Names of Approvers needed]@row ) + 1) - FIND(CHAR(10), [Names of Approvers needed]@row ) + 1, LEN([Names of Approvers needed]@row ) - FIND(CHAR(10), [Names of Approvers needed]@row ))), "")
3rd email is extracted with this formula —>
=IF(COUNTM([Names of Approvers needed]@row ) > 2, MID([Names of Approvers needed]@row , FIND(CHAR(10), [Names of Approvers needed]@row , FIND(CHAR(10), [Names of Approvers needed]@row ) + 1) + 1, LEN([Names of Approvers needed]@row ) - FIND(CHAR(10), [Names of Approvers needed]@row , FIND(CHAR(10), [Names of Approvers needed]@row ) + 1)), "")
I'm going cross-eyed trying to put together the formula to extract the 4th email.
Help??