문제

How to get total time in minutes from datetime?

18/11/2013 07:31:04

The result should be: 451 min (it's 07*60 + 31).

도움이 되었습니까?

해결책

Extract the hour and minute components of your date time with HOUR() and MINUTE() functions and combine them with this formula

=HOUR(A1)*60+MINUTE(A1)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top