Forum Discussion
Anonymous
8 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. ...
- 8 months ago
Anonymous , Power Query -> Transform ->Extract -> Text before Delimiter
Dax
New column = Left([Column], Search("(", [Column],,0)) )
amitchandak
8 months agoSuper User
Anonymous , Power Query -> Transform ->Extract -> Text before Delimiter
Dax
New column = Left([Column], Search("(", [Column],,0)) )
- Anonymous8 months agoNot applicable
Thank-you, I sent the request and then realised what I needed to do but thank-you for posting a reply.