I appreciate the help with this, which will help me learn. I know I can do this with Query from Table, but I'd like to learn it by formula. I figured out how to extract the numbers within the ( parens ) using left and find. Now, I'd like to work out how to remove only the company names via a formula. I've tried right and mid but my logic is not working.
Thank you so much for any help.
Thank you so much for any help.
Book1 | |||||
---|---|---|---|---|---|
B | C | D | |||
3 | Companies | Co # | Co Name | ||
4 | (124) Quest Diagnostics | (124) | stics | ||
5 | (559) Armor Blood Draw | (559) | o | ||
6 | (59) Excess White Cell Co | (59) | |||
7 | My logic does not work | ||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D4 | D4 | =RIGHT(B4,FIND(")",B4,2)*1) |
D5 | D5 | =MID(B5,FIND(")",B5,1)*2,1) |
C4:C6 | C4 | =LEFT(B4,FIND(")",B4)*1) |