Pull out the text sitting between two markers, like inside parentheses.
Copy this formula
=TEXTAFTER(TEXTBEFORE(A2, ")"), "(")TEXTBEFORE trims everything after the closing marker and TEXTAFTER drops everything up to the opening marker, leaving just the middle. In older Excel, use MID with two FINDs.
=TEXTAFTER(TEXTBEFORE("Item (SKU-42)", ")"), "(")→SKU-42Grabs the text inside the parentheses.
Legacy (MID + FIND)
=MID(A2, FIND("(",A2)+1, FIND(")",A2)-FIND("(",A2)-1)Works before TEXTBEFORE/TEXTAFTER existed.
TEXTBEFORE/TEXTAFTER take an instance number; pass it to target the 2nd or 3rd marker.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.