March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
In my data source, there are three tables: Appeared, Disappeared and Component. I need to remove the duplicates if all of these three tables are the same for different rows. But I also keep adding data everyday, so I need a function/code that will automatically remove duplicates as and when I add more data.
I have combined the three columns into one and called it key. But even if I just try to remove duplicates from the key (transform data), it does not work. Can someone please help me with this?
The sample dashboard looks like this:
Solved! Go to Solution.
@analyst123 , You can try this in Power query
Select the table you want to work with.
Select the columns Appeared, Disappeared, and Component.
Go to the "Add Column" tab and click on "Merge Columns".
Choose a separator (e.g., a comma) and provide a name for the new column (e.g., Key).
Remove Duplicates:
With the new Key column selected, go to the "Home" tab.
Click on "Remove Rows" and then select "Remove Duplicates".
Create a Function to Automate the Process:
Go to the "Home" tab and click on "Advanced Editor".
Write a function that will combine the columns and remove duplicates. Here is an example of what the function might look like:
let
Source = (inputTable as table) as table =>
let
// Combine columns to create a key
AddKeyColumn = Table.AddColumn(inputTable, "Key", each Text.Combine({Text.From([Appeared]), Text.From([Disappeared]), Text.From([Component])}, ",")),
// Remove duplicates based on the key
RemoveDuplicates = Table.Distinct(AddKeyColumn, {"Key"})
Apply the Function:
Apply this function to your data source. You can do this by invoking the function on your table.
Proud to be a Super User! |
|
Hi @analyst123,
Did you try to do that in power query?
Proud to be a Super User!
@analyst123 , You can try this in Power query
Select the table you want to work with.
Select the columns Appeared, Disappeared, and Component.
Go to the "Add Column" tab and click on "Merge Columns".
Choose a separator (e.g., a comma) and provide a name for the new column (e.g., Key).
Remove Duplicates:
With the new Key column selected, go to the "Home" tab.
Click on "Remove Rows" and then select "Remove Duplicates".
Create a Function to Automate the Process:
Go to the "Home" tab and click on "Advanced Editor".
Write a function that will combine the columns and remove duplicates. Here is an example of what the function might look like:
let
Source = (inputTable as table) as table =>
let
// Combine columns to create a key
AddKeyColumn = Table.AddColumn(inputTable, "Key", each Text.Combine({Text.From([Appeared]), Text.From([Disappeared]), Text.From([Component])}, ",")),
// Remove duplicates based on the key
RemoveDuplicates = Table.Distinct(AddKeyColumn, {"Key"})
Apply the Function:
Apply this function to your data source. You can do this by invoking the function on your table.
Proud to be a Super User! |
|
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |