I have two columns and I am trying to union the text in these two columns and store the result in the third. In the example data below, Union is the output I am trying to achieve. When I concatenate col1 and col2 data, there are duplicates in the result. Is there a way to get rid of the duplicates in Excel using power query? Or should I write a C# program and use union operator to get the result set I am looking for. Thanks
Col1   Col2       Union
 ab     a          ab
 a+     ab         ab+
 a      a          a  
 a      ab         ab
 
     
     
    