Essentially:
I have a cell value that looks like this:
Hello - (Whats Up (HowAreYou))
I need to extract the value of what is inside the outside parenthesis:
Whats Up (HowAreYou)
How can this formula be modified to accommodate this requirement:
=MID(C11,SEARCH("(",C11)+1,SEARCH(")",C11)-SEARCH("(",C11)-1)

