Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
hi Guys,
I have two fact tables (fOrçamento and fRealizado).
I would like to know the projects I have in one and not in the other table.
How could this be done? Can anyone help me to get this result?
Result:
Solved! Go to Solution.
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |