How can I convert hours:minutes:seconds
into total minutes in Excel?
如何在Excel中将小时:分:秒转换为总分钟?
3 个解决方案
#1
28
Just use the formula
用这个公式
=A8*60*24
= A8 * 60 * 24
#2
10
The only way is to use a formula or to format cells. The method i will use will be the following: Add another column next to these values. Then use the following formula:
唯一的方法是使用公式或格式化单元格。我将使用的方法是:在这些值旁边添加另一列。然后使用以下公式:
=HOUR(A1)*60+MINUTE(A1)+SECOND(A1)/60
#3
10
Just use the formula
用这个公式
120 = (HOUR(A8)*3600+MINUTE(A8)*60+SECOND(A8))/60
(A8)* 3600 + 120 =(小时分钟(A8)* 60 +第二(A8))/ 60
#1
28
Just use the formula
用这个公式
=A8*60*24
= A8 * 60 * 24
#2
10
The only way is to use a formula or to format cells. The method i will use will be the following: Add another column next to these values. Then use the following formula:
唯一的方法是使用公式或格式化单元格。我将使用的方法是:在这些值旁边添加另一列。然后使用以下公式:
=HOUR(A1)*60+MINUTE(A1)+SECOND(A1)/60
#3
10
Just use the formula
用这个公式
120 = (HOUR(A8)*3600+MINUTE(A8)*60+SECOND(A8))/60
(A8)* 3600 + 120 =(小时分钟(A8)* 60 +第二(A8))/ 60