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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
rsreyes
New Member

Get SUM between two dates

Hi

 

I've two dates:
- DueDate

- Today

 

I want to know the number of days overdue

 

Any idea?

 

Thks

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

I believe that is:

DATEDIFF([DueDate],[Today],day)

https://msdn.microsoft.com/en-us/library/dn802538.aspx



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

For some weird reason, the DATEDIFF function returns an error when the number is negative (which it might be).

 

So you can patch that by doing = IFERROR(DATEDIFF([DueDate],[Today],day),-1)

 

Or try = [DueDate] - [Today] and format the column as int.


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.