Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
| User | Count |
|---|---|
| 33 | |
| 30 | |
| 25 | |
| 13 | |
| 12 |