Forum Discussion
admi
6 years agoFrequent Visitor
Time between date
Hi, I need to get the time in minutes between two dates like this : 13/02/2020 17:04.00. The first and the last of my table. I also need to calculate the time when a parameters is null. I have a...
AlexAlberga727
6 years agoResolver II
Total Time Diff =
VAR StartDate = MIN( 'Table'[StartDate] )
VAR EndDate = MAX( 'Table'[EndDate] )
RETURN
DATEDIFF( StartDate , EndDate , MINUTE )
Give it a thumbs up! 😃