Hello all,
I am attempting to reformat a list of patient contact information into something compatible with our outbound texting system. The phone number column contains multi-line cells with home, mobile, and work numbers.
I have attempted different combinations of TextBefore, TextAfter, FIND, LEN, etc., to extract the mobile number into a new column, but with little success (namely, because each cell has a slightly different type of formatting).
Column C below illustrates the multi-line cells I'm dealing with. Column D is the desired result (the first 13 characters to the left of "(Mobile)". I'll be reformatting 1,000+ rows per month, so any advice on simplifying this step would be greatly appreciated.
I am attempting to reformat a list of patient contact information into something compatible with our outbound texting system. The phone number column contains multi-line cells with home, mobile, and work numbers.
I have attempted different combinations of TextBefore, TextAfter, FIND, LEN, etc., to extract the mobile number into a new column, but with little success (namely, because each cell has a slightly different type of formatting).
Column C below illustrates the multi-line cells I'm dealing with. Column D is the desired result (the first 13 characters to the left of "(Mobile)". I'll be reformatting 1,000+ rows per month, so any advice on simplifying this step would be greatly appreciated.
MobileNumberExtraction.xlsx | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | First Name | Last Name | Phone | Mobile Number | ||
2 | John | Doe | 555-444-1234 (Home Phone) 555-333-1234 (Mobile) | 555-333-1234 | ||
3 | Jane | Doe | 555-444-5678 (Home Phone) 555-333-5678 (Mobile) 555-222-5678 (Work Phone) | 555-333-5678 | ||
4 | Bob | Doe | 555-111-9876 (Mobile) | 555-111-9876 | ||
Sheet1 |