Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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"})
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 7 | |
| 5 | |
| 5 |