Forum Discussion
Compare columns based on two different table
- 3 years ago
SBC Do this in PowerQuery and use 2 columns as a key when merging queries.
let Source = Table.NestedJoin ( T1, { "member ", "deal " }, T2, { "member ", "Deal " }, "T2", JoinKind.FullOuter ), ExpandedT2 = Table.ExpandTableColumn ( Source, "T2", { "member ", "Deal ", "Qty", "Date" }, { "member ", "Deal ", "Qty.1", "Date.1" } ) in ExpandedT2If you want a full outer join with DAX you can read this and modify yourself: https://www.antmanbi.com/post/full-outer-join-in-dax-in-power-bi-and-ssas-tabular
SBC Do this in PowerQuery and use 2 columns as a key when merging queries.
let
Source = Table.NestedJoin (
T1,
{ "member ", "deal " },
T2,
{ "member ", "Deal " },
"T2",
JoinKind.FullOuter
),
ExpandedT2 = Table.ExpandTableColumn (
Source,
"T2",
{ "member ", "Deal ", "Qty", "Date" },
{ "member ", "Deal ", "Qty.1", "Date.1" }
)
in
ExpandedT2
If you want a full outer join with DAX you can read this and modify yourself: https://www.antmanbi.com/post/full-outer-join-in-dax-in-power-bi-and-ssas-tabular
- SBC3 years agoHelper III
Hi AntrikshSharma ,
Thanks for replying the query,I have already tried that full outer join faced issue in matching the data.
"10/03/2022 " "qty" is existed in both table same data but when we apply conditional it is displaying "NO" insted of showing "Yes"
If it works for you please share PBIX file will be helpful.
Thanks,
SBC