This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello
I am struggling with creating a dimension table for Customers. I have different tables which I merged.
Now I have a column called Customer ID and one called Channel.
The problem is that when merging I get duplicates.
I would like to remove the duplicates only when the value in column Channels is 10.
Can anybody help how to do this in Power Query?
| Input | Customer ID | Channels |
| 11167 | 40 | |
| 11167 | 10 | |
| 11169 | 40 | |
| 11169 | 10 | |
| 11170 | 40 | |
| 11170 | 10 | |
| Output | Customer ID | Channels |
| 11167 | 10 | |
| 11169 | 10 | |
| 11170 | 10 |
Thank you! I will try out
You could try:
split the table into two: table 1 where ID = 40 and table 2 where ID = 10;
remove duplicates in table 2;
recombine tables.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |