Forum Discussion
abodqmm
2 years agoRegular 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...
- 2 years ago
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.
- 2 years ago
Hello abodqmm ,
try the following
Column = var diff = DATEDIFF('TableName'[start_time],'TableName'[end_time],MINUTE) RETURN IF(diff < 0,BLANK(),diff)
Idrissshatila
Super User
2 years agoHello abodqmm ,
try the following
Column =
var diff = DATEDIFF('TableName'[start_time],'TableName'[end_time],MINUTE)
RETURN
IF(diff < 0,BLANK(),diff)