Google Sheets – How to Show Hours Over 24

google sheets

If one sums a number of cells that contains time data, how does one sum it and format it to show hours and minutes and not days? For example if the times 20:20 & 08:10 are summed, the result formatted by hours and minutes is 04:30, what is required is 28:30

How can a cell be formatted to display total hours?

Best Answer

Let's say you have these numbers in A1, A2

  1. Apply TIMEVALUE() to B1, B2
  2. SUM all these values then multiply by 24 into B3
  3. Apply this in any other cell: =ROUNDDOWN(B3)&":"&60*(B3-(ROUNDDOWN(B3)))