Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
BarryFletcher
Helper III
Helper III

How can I show the number of rows that the due date value has been passed?

Hi all,

 

I have a table with a "Due Date" columnd / value. How can I list all records that have passed this date and need to be listed as Overdue?

1 ACCEPTED SOLUTION
talespin
Solution Sage
Solution Sage

hi @BarryFletcher 

 

You could Put all records in a table or get count and apply filter at visual level where DueDate < Current date without explicit DAX.

 

or

 

use something like this

Count =
CALCULATE( COUNTROWS(TestTable2), REMOVEFILTERS(TestTable2), TestTable2[CreatedDate] < UTCTODAY())
 

 

 

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @BarryFletcher ,

Can you please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.

How to Get Your Question Answered Quickly  

Regards,

Xiaoxin Sheng

Apologies for the deayed reply but I was away for 2 days.

 

In my table below the "Due Date" can be unique to each row. At the moment I have 279 rows with a Due Date set - what i would like to be able to report on is the rows which have exceeded their Due Date

 

Issues Table.jpg

talespin
Solution Sage
Solution Sage

hi @BarryFletcher 

 

You could Put all records in a table or get count and apply filter at visual level where DueDate < Current date without explicit DAX.

 

or

 

use something like this

Count =
CALCULATE( COUNTROWS(TestTable2), REMOVEFILTERS(TestTable2), TestTable2[CreatedDate] < UTCTODAY())
 

 

 

Thank you - I have set this but changed the Due date <UTCTODAY()

 

Can I set a table based on these results?

hi @BarryFletcher ,

 

Can I set a table based on these results?

 

Sorry didn't understand. Please explain.

If you can share screenshot what you have and what you expect, that would help.

It's ok I have a table setup now with a page filter applied as you suggested earlier.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.