I use the formula below to pull out all the data between parentheses:
REGEX_Replace([Course Title], ".*\((.*)\).*", "$1")
Now I need to get only the data between the last two parentheses. See below, some of my original data has more than 2 parentheses, but the data I need will always be between the last two:
| Original Data | Data I Need |
| J (Q.) Smith ( QWERTY ) | QWERTY |
| B (D.) Jones (ASDFGH) | ASDFGH |
| R Johnson ( ZXCVBN45 ) | ZXCVBN45 |
| P COLLINS ( LKJHGF ) | LKJHGF |
| Z Brownfox ( DFGH234 ) | DFGH234 |