Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Unique values from Single Cell

Hello,   I want to find unique values from single cell in Power BI. Here is the example. If you see column 'C' customers are repeating, I want to find unique customers as shown in below tables. Th...
  • Anonymous's avatar
    Anonymous
    5 years ago

    Just Created new column in Power Query with Code mentioned below:

     

    =Text.Combine (
                    List.Distinct(
                              List.Transform (Text.Split([Customer],","),each Text.Trim(_))
                                      )
                         ,", ")