Forum Discussion
Validation between two fact tables
- 3 years ago
Hi,
I usually do it on the Power Query side (it depends on the data size).
For this purpose :
1-Merge both tables and create the new only (Full Outer join)
2-After expanding the columns and selecting the particular columns that you need, create the new "custom Column" as bellow :
= Table.AddColumn(#"Expanded Sheet64", "Custom", each if [Id] <> null then
if [Sheet64.Id] <> null then "Project " & [Name] & " Contains in table A and B"
else "Project " & [Name] & " Contains in table A"
else "Project " & [Sheet64.Name] & " Contains in table B")Appreciate your Kudos an please mark it as a solution if it helps
Hi,
I usually do it on the Power Query side (it depends on the data size).
For this purpose :
1-Merge both tables and create the new only (Full Outer join)
2-After expanding the columns and selecting the particular columns that you need, create the new "custom Column" as bellow :
= Table.AddColumn(#"Expanded Sheet64", "Custom", each if [Id] <> null then
if [Sheet64.Id] <> null then "Project " & [Name] & " Contains in table A and B"
else "Project " & [Name] & " Contains in table A"
else "Project " & [Sheet64.Name] & " Contains in table B")
Appreciate your Kudos an please mark it as a solution if it helps