Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 months ago
Solved

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.  ...
  • amitchandak's avatar
    7 months ago

    Anonymous , Power Query -> Transform ->Extract -> Text before Delimiter 


    https://youtu.be/oGY4RoPKDOE

    Dax 
    New column = Left([Column], Search("(", [Column],,0)) )