Forum Discussion
slounsbury
Helper II
8 years agoDisplay Absolute Value Of DATEDIFF Column
I have a column that has the difference in time but some of the values are reading as the correct number just negative. Is there away to modify my query to make all numbers absolute? Query Being...
- 8 years ago
Hi slounsbury,
Just wrap your measure with ABS formula:
ART = ABS ( DATEDIFF ( v_rpt_Service_SLA[ART_ST], v_rpt_Service_SLA[Date_Responded_UTC], HOUR ) )Regards,
MFelix
MFelix
Super User
8 years agoHi slounsbury,
Just wrap your measure with ABS formula:
ART =
ABS (
DATEDIFF (
v_rpt_Service_SLA[ART_ST],
v_rpt_Service_SLA[Date_Responded_UTC],
HOUR
)
)
Regards,
MFelix
- slounsbury8 years ago
Helper II
Thank you! This did the trick.