This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi,
Can you please help me out to have below output in power query which joins I need to make? Please help
All data columns are existing in 3 source files then I wanted to output as below.
Thanks
Anil Pal
For each new data column, remove the values in the columns to the left and then combine them.
Full sample query you can paste into the Advanced Editor of a new blank query:
let
DATA1 = #table(type table [DATA1 = text], {{"A"},{"B"},{"C"},{"D"},{"E"},{"F"},{"G"}}),
DATA2 = #table(type table [DATA2 = text], {{"A"},{"D"},{"G"},{"J"},{"H"},{"I"}}),
DATA3 = #table(type table [DATA3 = text], {{"B"},{"J"},{"L"},{"K"},{"M"},{"N"}}),
List1 = DATA1[DATA1],
List2 = DATA2[DATA2],
List12 = List.Distinct(List.Combine({List1, List2})),
Table1 = DATA1,
Table2 = Table.SelectRows(DATA2, each not List.Contains(List1, [DATA2])),
Table3 = Table.SelectRows(DATA3, each not List.Contains(List12, [DATA3])),
Source = Table.Combine({Table1, Table2, Table3})
in
Source
(If you have DATA1, DATA2, DATA3 defined as separate queries, remove those definitions from the query above.)
Thanks Alex for your response but in my actual records i have multiple columns & in single columns almsot having 1Lac rows
then how can we achieve it.
Please help me
I don't understand "almsot having 1Lac rows". Can you give an example that is more like your actual data?
Oh ok. That is JoinKind.Right.Anti
--Nate
Hi,
But Full outer join will print both tables record right, I only wanted to see the non-existing item of my first table into my merging table
@Anil2264 , I think append, keep the column names different
Append : https://radacad.com/append-vs-merge-in-power-bi-and-power-query
Full Outer Joins.
--Nate
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |