Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I'm looking to create a list/table that combines a couple fields from three existing tables, and creates a full list of those details, without duplicates. For example, we'd want to join Table A, B and C to create Table D (see below). What is the most efficient way to do this in PowerBi?
Thanks!
Solved! Go to Solution.
let
Source = Table.Combine({Table_A, Table_B, Table_C}),
#"Doublons supprimés" = Table.Distinct(Source)
in
#"Doublons supprimés"
If you the tables you want to append (combine) have the same headers, then you can use the Append table feature
Then select all your new table and you can easily remove duplicates
Give it a try and if you need more help, I'll be happy to help more
let
Source = Table.Combine({Table_A, Table_B, Table_C}),
#"Doublons supprimés" = Table.Distinct(Source)
in
#"Doublons supprimés"
User | Count |
---|---|
8 | |
7 | |
5 | |
5 | |
4 |
User | Count |
---|---|
14 | |
13 | |
8 | |
6 | |
6 |