Hello..I have a series of lapsed times like 02:00
05:45
10:35
13:45
I want to add them up and result should be 32:05..These times are a part of sql db and I have a separate column where each are converted to strings..after passing the sum query I get the total ticks..issue is that after resetting timezone to 0 and doing datetime.time on the sum, I get minutes correctly as 05 but hours are 08, as hh resets after 24. Can somebody suggest time format to display unlimited hours and min limited to 60? Thanks..
05:45
10:35
13:45
I want to add them up and result should be 32:05..These times are a part of sql db and I have a separate column where each are converted to strings..after passing the sum query I get the total ticks..issue is that after resetting timezone to 0 and doing datetime.time on the sum, I get minutes correctly as 05 but hours are 08, as hh resets after 24. Can somebody suggest time format to display unlimited hours and min limited to 60? Thanks..