Forum Discussion
dparkinson
Advocate I
8 years agoCreate a Calculated Table of Differences between Tables
I have an SQL Table that keeps a snapshot of the data that was used in a report from the previous week. I have imported this table into the Power BI Desktop report that has the current weeks report....
Zubair_Muhammad
Community Champion
8 years agoHi,
May be
Table =
UNION (
CALCULATETABLE ( TableCurrent, EXCEPT ( TableCurrent, TableSnapshot ) ),
CALCULATETABLE ( TableSnapshot, EXCEPT ( TableSnapshot, TableCurrent ) )
)