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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a data source where I need to add a new column to display a calculated value of how many days late an action is past the due date, but if not late, then to display nothing. Any ideas?
Example of existing column:
Contract Due Date
11/30/2019
3/30/2019
11/30/2018
1/19/2019
1/19/2018
I need to add a column that would show:
Days Late
0 or null
0 or null
19 (calculated as Today (12/19) minus 11/30)
0 or null
334 (calculated as Today (12/19 minus 1/19)
Solved! Go to Solution.
something like this
Days Late = MAX(TODAY()-Table[Contract Due Date],0)
if it's not overdue the TODAY() - Table[Contract Due Date] will return a negative number, which is always less than 0, If it will be overdue the number will be positive returning the correct value
something like this
Days Late = MAX(TODAY()-Table[Contract Due Date],0)
if it's not overdue the TODAY() - Table[Contract Due Date] will return a negative number, which is always less than 0, If it will be overdue the number will be positive returning the correct value
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |