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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello:
Great minds. Could you please help me to create a measure that calculates in progress overdue as of Today?
I need the total count of Overdue , where Overall Status = "Complete" and "In progress" "(BLANKS) AND PWC Actual Completion Date is Filter only BLANK AND PWC Schedule Completion Date everything before today. Appreciate your help.
Thanks
Solved! Go to Solution.
Hi @naftycs ,
I think you can try this code to create a measure to calcualte the total count of Overdue.
Total Count of Overdue =
CALCULATE (
DISTINCTCOUNT ( 'Table'[ID] ),
FILTER (
'Table',
'Table'[Overall Status]
IN { "Completed", "In-Progress", "" }
&& ISBLANK ( 'Table'[Deloitte Actual Completion Date] )
&& 'Table'[Deloitte Schaduled Completion Date] < TODAY ()
)
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Sorry, I could not understand.
Hi @naftycs ,
I think you can try this code to create a measure to calcualte the total count of Overdue.
Total Count of Overdue =
CALCULATE (
DISTINCTCOUNT ( 'Table'[ID] ),
FILTER (
'Table',
'Table'[Overall Status]
IN { "Completed", "In-Progress", "" }
&& ISBLANK ( 'Table'[Deloitte Actual Completion Date] )
&& 'Table'[Deloitte Schaduled Completion Date] < TODAY ()
)
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Show the expected result very clearly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!