Forum Discussion
dparkinson
8 years agoAdvocate I
Create 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
8 years agoCommunity Champion
Hi,
May be
Table =
UNION (
CALCULATETABLE ( TableCurrent, EXCEPT ( TableCurrent, TableSnapshot ) ),
CALCULATETABLE ( TableSnapshot, EXCEPT ( TableSnapshot, TableCurrent ) )
)