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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
abodqmm
Regular Visitor

Datediff negative results

guys i have a start time end an end 

i calculate it right but there some wrong entries like the end time before the start and the results show in negative 

in the datedif i want to make he negative result as blank how can i do it 

 

= DATEDIFF('TableName'[start_time],'TableName'[end_time],MINUTE)
 
i want to make it count only the correct time results with negative i want them to appear as blank ??????????
2 ACCEPTED SOLUTIONS
danextian
Super User
Super User

Hi @abodqmm 

You can modify your formula to below:

=
VAR __DIFF =
    DATEDIFF ( 'TableName'[start_time], 'TableName'[end_time], MINUTE )
RETURN
    IF ( __DIFF < 0, BLANK (), __DIFF )

 

My question  now is why would the difference return negative values? Shouldn't the end always be later than the start? You might need to include in your calculation the dates as well.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

Idrissshatila
Super User
Super User

Hello @abodqmm ,

 

try the following

Column = 
var diff = DATEDIFF('TableName'[start_time],'TableName'[end_time],MINUTE)
RETURN
IF(diff < 0,BLANK(),diff)

Idrissshatila_0-1707981767749.png

 



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Idrissshatila
Super User
Super User

Hello @abodqmm ,

 

try the following

Column = 
var diff = DATEDIFF('TableName'[start_time],'TableName'[end_time],MINUTE)
RETURN
IF(diff < 0,BLANK(),diff)

Idrissshatila_0-1707981767749.png

 



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




danextian
Super User
Super User

Hi @abodqmm 

You can modify your formula to below:

=
VAR __DIFF =
    DATEDIFF ( 'TableName'[start_time], 'TableName'[end_time], MINUTE )
RETURN
    IF ( __DIFF < 0, BLANK (), __DIFF )

 

My question  now is why would the difference return negative values? Shouldn't the end always be later than the start? You might need to include in your calculation the dates as well.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.