Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi,
I'm trying to remove both open " ( " and close " ) " parenthesis in a word containing both of them.
Example:
(New Message)
I want it to be:
New Message
I cannot seem to find the correct DAX formula to remove both the open and close parenthesis.
Appreciate if you can help me.
Thanks!
Best regards,
Mark
Solved! Go to Solution.
Place this into a new column and change the TableName & ColumnName to suit
Remove Parenthesis = SUBSTITUTE (
SUBSTITUTE ( 'TableName'[Column Name], "(", "" ),
")",
"")
Ian
Place this into a new column and change the TableName & ColumnName to suit
Remove Parenthesis = SUBSTITUTE (
SUBSTITUTE ( 'TableName'[Column Name], "(", "" ),
")",
"")
Ian