Forum Discussion
Anonymous
5 years agoNot applicable
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...
- Anonymous5 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(_)) ) ,", ")
Anonymous
5 years agoNot applicable
Just Created new column in Power Query with Code mentioned below:
=Text.Combine (
List.Distinct(
List.Transform (Text.Split([Customer],","),each Text.Trim(_))
)
,", ")