Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn 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 |
|---|---|
| 20 | |
| 18 | |
| 11 | |
| 9 | |
| 7 |
| User | Count |
|---|---|
| 42 | |
| 38 | |
| 18 | |
| 17 | |
| 16 |