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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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