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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Compare perior day to current day using uniue id if the id was on the prior report but not on the current report count it as closed
is there any extra id's added to the current day that should not be counted
Hi @bethamsetty ,
Try a measure something like this:
_closedToday =
VAR __yesterday =
CALCULATETABLE(
VALUES(yourTable[yesterday]),
NOT ISBLANK(yourTable[yesterday])
)
VAR __today =
CALCULATETABLE(
VALUES(yourTable[today]),
NOT ISBLANK(yourTable[today])
)
RETURN
COUNTROWS(
EXCEPT(
__yesterday,
__today
)
)
Pete
Proud to be a Datanaut!
Hi Thank you for your help this is not working
What's not working? Is there an error? Are you getting a different value than you expect? What?
Pete
Proud to be a Datanaut!