Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I currently have this formula which shows the amout of days its due by:
Solved! Go to Solution.
Hi there!
You can use a IF statement, so:
VAR _Days =
DATEDIFF(TODAY(), Tasks[DueDate], DAY )
RETURN
IF(
_Days >= 0,
BLANK(),
_Days
)
Let me know if that helps!
Hi there!
You can use a IF statement, so:
VAR _Days =
DATEDIFF(TODAY(), Tasks[DueDate], DAY )
RETURN
IF(
_Days >= 0,
BLANK(),
_Days
)
Let me know if that helps!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 8 | |
| 8 | |
| 7 |