Search code examples
datetimegoogle-sheetstimestring-formattingnumber-formatting

Automatically adjust a clock that measures time worked in 100 minutes vs 60 minutes


The aim is to automatically adjust a clock that measures time worked in 100 minutes vs 60 minutes. For example, the timesheet may show 21:76 hours which would be 21 hours and 46 minutes when converted to a standard 60-minute clock


Solution

  • see:

    =TEXT(SUBSTITUTE(A1, ":", ".")/24, "hh:mm")
    

    enter image description here

    or:

    =TEXT(SUBSTITUTE(A1; ":"; ",")/24; "hh:mm")