Forum Discussion
icturion
7 years agoResolver II
Calculate difference between two date/time values
Hi, I have two columns with time stamps. first i create a measure for echa column thats calculates the average time: Measure = FORMAT(AVERAGE(AQZ_TRAVEL_MON[Tijd_Begin]);"HH:MM: SS") Now ...
- Anonymous7 years ago
Try this:
measure differents = FORMAT('Table'[measure 1] - Table[measure 2];"HH:MM: SS")
Anonymous
7 years agoNot applicable
Why are you using SUMX to find the difference?
icturion
7 years agoResolver II
datadiff and datebetween don't work, so I tried sumx. which would you recommend?
- Anonymous7 years agoNot applicable
Try this:
measure differents = FORMAT('Table'[measure 1] - Table[measure 2];"HH:MM: SS")