Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello Power-Query Community,
I want to innerjoin the distinct values from two columns from two tables (queries) in one single step in Power Query as a new table (query). Can this be done?
Table 1
Target Column | Random Column 1 | Random Column 2 |
1 | d | b |
1 | q | d |
2 | b | d |
2 | d | b |
Table 2
Target Column | Random Column 1 | Random Column 2 |
1 | f | h |
1 | k | e |
2 | g | f |
2 | g | h |
3 | w | r |
3 | f | v |
Expected Results Table
Result Column |
1 |
2 |
I already tried something like:
= Table.Join(
Table.Distinct(Table1,{"TargetColumn"}),
Table.Distinct(Table2,{"TargetColumn"}),
"Expected Results Table",
JoinKind.InnerJoin
)
Can someone guide me into the right direction?
Many thanks in advance.
Solved! Go to Solution.
=Table.FromColumns({List.Distinct(List.Intersect({Table1[col],Table2[col]}))},{"Result"})
thank you!
=Table.FromColumns({List.Distinct(List.Intersect({Table1[col],Table2[col]}))},{"Result"})
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
14 | |
13 | |
13 | |
12 | |
12 |