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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Dan492813
Helper II
Helper II

IF date & time in column is greater than date and time in another column

Hey All

 

I am trying to find if someone has breached a SLA with customer action. 

 

I have a due date and time column and a completed date and time column 

Due DateCompleted Date
02/06/2020 17:00:0002/06/2020 16:45:00
02/06/2020 17:00:0002/06/2020 17:45:00

 

I want it to be conditional to find which rows have have a > Completed Date than Due Date.

It would also be good to be able to count and filter this. 

 

I can get it working for the date alone but not a date/time field. 

Would a new column be better? 

 

Any help would be appreciated. 

 

Thanks, Daniel.

1 ACCEPTED SOLUTION

HI @Dan492813 ,

 

 

You can do this is Power Query too

 

Make sure your Data Type is Date/Time.

 

Create a Custom Column.

 

1.jpg

 

 

You can also create a Custom Column

Column = if ('Table'[Due Date] < 'Table'[Completed Date] , "true","false")

 

1.jpg

 


Regards,

Harsh Nathani


Appreciate with a Kudos!! (Click the Thumbs Up Button)

Did I answer your question? Mark my post as a solution!

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Dan492813 , Not sure I am clear

 

You can use this both measure or column

 

Table[Completed Date].date >Table[Due Date].date

 

measure = calculate(countrows(Table), filter(Table,Table[Completed Date].date >Table[Due Date].date))

Sorry I wasn't clear..

 

IF Due Date is < Completed date then 'true' else 'false'. It wont take into account the time only the date

HI @Dan492813 ,

 

 

You can do this is Power Query too

 

Make sure your Data Type is Date/Time.

 

Create a Custom Column.

 

1.jpg

 

 

You can also create a Custom Column

Column = if ('Table'[Due Date] < 'Table'[Completed Date] , "true","false")

 

1.jpg

 


Regards,

Harsh Nathani


Appreciate with a Kudos!! (Click the Thumbs Up Button)

Did I answer your question? Mark my post as a solution!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.