Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
knishal
Regular Visitor

Show overdue task

I currently have this formula which shows the amout of days its due by: 

 

OverDueTask = DATEDIFF(TODAY(), Tasks[DueDate]DAY )
 
How can I modify it to show only OVERDUE Task and the day count?
knishal_0-1661430339729.png

 

1 ACCEPTED SOLUTION
PabloDeheza
Solution Sage
Solution Sage

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!

View solution in original post

2 REPLIES 2
knishal
Regular Visitor

@PabloDeheza works. Thank you

PabloDeheza
Solution Sage
Solution Sage

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!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Kudoed Authors