Google Sheets – How to Convert 1.33 Hours to 1:20 (Hours:Minutes)

google sheets

How to add minutes in Google Spreadsheet?

I've got a Google Spreadsheet that looks roughly like this:

min | min | min | min | min | total min | total time      
 20 |  20 |  20 |  20 |  20 |    80     |    1.33

But I want Total Time to show 01:20 or 01h20min or something like that.

How can I accomplish that?

Best Answer

I just found this answer for Excel over at http://support.microsoft.com/kb/75618 and it worked for me in Google sheets as well. Returns a serial number that displays correctly as HH:MM when your target cell is formatted as Hours.

="Minutes"/1440  

(There are 1440 minutes in 24 hrs)

example:

=SUM(A1:A5)/1440 

results in

0.055555555555556

and in turn converts to

01:20:00 

(when cell formatted as "Hours")