Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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"
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
12 | |
8 | |
8 |
User | Count |
---|---|
17 | |
10 | |
8 | |
7 | |
7 |