
=MID(txt,SEARCH("(",txt)+1,SEARCH(")",txt)-SEARCH("(",txt)-1)Related formulas
Extract word that begins with specific character
Split text string at specific character
To extract text between parentheses, braces, brackets, etc. you can use a formula based on the MID function, with help from SEARCH function.
In the example shown, the formula in C5 is:
=MID(B5,SEARCH("(",B5)+1,SEARCH(")",B5)-SEARCH("(",B5)-1)+0
The foundation of this formula is the MID function, which extracts a specific number of characters from text, starting at a specific location.
To figure out there to start extracting text, we use this expression:
SEARCH("(",B5)+1
Which locates the left parentheses, and adds 1 to get a number that represents the position of the first character inside the parentheses.
To figure out how many characters to extract, we use this expression:
SEARCH(")",B5)-SEARCH("(",B5)-1
Which locates the second parentheses in the text, and then subtracts the position of the first parentheses (less one) to get the total number of characters that need to be extracted.
With this information, MID extracts just the text inside the parentheses.
+0
Finally, because we want a number as the final result in this particular example, we add zero to text value returned by MID. This math operation causes Excel to coerce text values to numbers.
IF you don't need or want a number at the end, this step is not required.

=MID(txt,SEARCH("(",txt)+1,SEARCH(")",txt)-SEARCH("(",txt)-1)Related formulas
Extract word that begins with specific character
Split text string at specific character
To extract text between parentheses, braces, brackets, etc. you can use a formula based on the MID function, with help from SEARCH function.
In the example shown, the formula in C5 is:
=MID(B5,SEARCH("(",B5)+1,SEARCH(")",B5)-SEARCH("(",B5)-1)+0
The foundation of this formula is the MID function, which extracts a specific number of characters from text, starting at a specific location.
To figure out there to start extracting text, we use this expression:
SEARCH("(",B5)+1
Which locates the left parentheses, and adds 1 to get a number that represents the position of the first character inside the parentheses.
To figure out how many characters to extract, we use this expression:
SEARCH(")",B5)-SEARCH("(",B5)-1
Which locates the second parentheses in the text, and then subtracts the position of the first parentheses (less one) to get the total number of characters that need to be extracted.
With this information, MID extracts just the text inside the parentheses.
+0
Finally, because we want a number as the final result in this particular example, we add zero to text value returned by MID. This math operation causes Excel to coerce text values to numbers.
IF you don't need or want a number at the end, this step is not required.