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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi
I've two dates:
- DueDate
- Today
I want to know the number of days overdue
Any idea?
Thks
I believe that is:
DATEDIFF([DueDate],[Today],day)
https://msdn.microsoft.com/en-us/library/dn802538.aspx
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.