Forum Discussion
Anonymous
7 months agoNot applicable
Remove string and parenthesis
Hi, I have a column with a number of different stores each ending with the area (these are different) in parenthesis. What I would like is to remove the parenthesis and the string within that. ...
- 7 months ago
Anonymous , Power Query -> Transform ->Extract -> Text before Delimiter
Dax
New column = Left([Column], Search("(", [Column],,0)) )
amitchandak
7 months agoSuper User
Anonymous , Power Query -> Transform ->Extract -> Text before Delimiter
Dax
New column = Left([Column], Search("(", [Column],,0)) )
Anonymous
7 months agoNot applicable
Thank-you, I sent the request and then realised what I needed to do but thank-you for posting a reply.