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

Time:01-10

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

CodePudding user response:

see:

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

enter image description here

or:

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