Power BI: delete duplicates
To remove duplicates, I have to go in Power Query Editor by clicking on “home -> transform data -> transform data”:

To delete duplicates in a column, I will select the column then right click on the header to select “remove duplicates”:
![]() |
![]() |
To delete duplicates in a list of values, click on “add column -> custom column”:

Then put this formula:
Text.Combine(List.Distinct(List.Transform(Text.Split([argument]," "),each Text.Trim(_)))," ")

NOTE: change argument by yours

If my table combines both columns like that:

First, I will have to group my data based on “number” then combine all values of “support”, to know how to do it, read my article Power BI: combine multiple values. Once done, I will use the formula above to remove duplicates:

Interesting Topics
-
Be successfully certified ITIL 4 Managing Professional
Study, study and study, I couldn’t be successfully certified without studying it, if you are interested...
-
Be successfully certified ITIL 4 Strategic Leader
With my ITIL 4 Managing Professional certification (ITIL MP) in the pocket, it was time to go for the...
-
Hide visual and change background color based on selection
Some small tricks to customize the background colour of a text box...
-
Stacked and clustered column chart or double stacked column chart
In excel, I use a lot the combination of clustered and stacked chart...
-
Refresh Power BI
From the Power BI Service, I can set refresh but, for instance, there is no option to do it monthly or each time a change is made...
-
Power BI alerts to be sent by email from an excel file based on condition
I will explain how to send a list of emails from an excel file after creating alerts...