[excel] Convert hours:minutes:seconds into total minutes in excel

How can I convert hours:minutes:seconds into total minutes in Excel?

This question is related to excel

The answer is


enter image description here

Just use the formula

=A8*60*24


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

enter image description here


Just use the formula

120 = (HOUR(A8)*3600+MINUTE(A8)*60+SECOND(A8))/60