The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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
User | Count |
---|---|
69 | |
64 | |
62 | |
55 | |
28 |
User | Count |
---|---|
184 | |
82 | |
65 | |
48 | |
38 |