Forum Discussion
markefrody
Post Patron
7 years agoRemoving Open and Close Parenthesis in Text
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...
- 7 years ago
Place this into a new column and change the TableName & ColumnName to suit
Remove Parenthesis = SUBSTITUTE (
SUBSTITUTE ( 'TableName'[Column Name], "(", "" ),
")",
"")Ian
idrabble
7 years agoFrequent Visitor
Place this into a new column and change the TableName & ColumnName to suit
Remove Parenthesis = SUBSTITUTE (
SUBSTITUTE ( 'TableName'[Column Name], "(", "" ),
")",
"")
Ian
markefrody
Post Patron
7 years agoThanks idrabble (Ian). It works!