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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello:
I have used the following Formula:
Solved! Go to Solution.
Hi, @Anonymous
I have simulated some data, you can try the following methods.
PWC Past Due =
CALCULATE (
COUNTROWS ( Table_query__1 ),
FILTER (
ALL ( Table_query__1 ),
Table_query__1[Overall Status] = "Completed"
|| Table_query__1[Overall Status] = "In-Progress"
&& BLANK ()
&& (
SELECTEDVALUE ( Table_query__1[PwC Actual Complete Date] ) <> BLANK ()
|| SELECTEDVALUE ( Table_query__1[PwC Actual Complete Date] ) < TODAY ()
)
)
)
Does getting this result in this data match the output you want?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
I have simulated some data, you can try the following methods.
PWC Past Due =
CALCULATE (
COUNTROWS ( Table_query__1 ),
FILTER (
ALL ( Table_query__1 ),
Table_query__1[Overall Status] = "Completed"
|| Table_query__1[Overall Status] = "In-Progress"
&& BLANK ()
&& (
SELECTEDVALUE ( Table_query__1[PwC Actual Complete Date] ) <> BLANK ()
|| SELECTEDVALUE ( Table_query__1[PwC Actual Complete Date] ) < TODAY ()
)
)
)
Does getting this result in this data match the output you want?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Try like
PWC Past Due = CALCULATE(COUNTROWS(Table_query__1),
FILTER(Table_query__1,(Table_query__1[Overall Status] in {"Completed", "In-Progress"} || isblank(Table_query__1[Overall Status]))
&& ISBLANK(Table_query__1[PwC Actual Complete Date]) || Table_query__1[PwC Actual Complete Date]<TODAY()))