A99
A99

Reputation: 51

Total Time from MM:SS.SSS format

I want to get total time of two in google spreadsheet t1 = 0:57.667 t2 = 01:01.112

Both t1 and t2 format to MM:SS.SSS

When I try to add them with sum(t1;t2) get: 0:00.000 even if it is format to MM:SS.SSS

When I try to add them with t1+t2 get: „0:57.667“ is text and can`t be changed to number.

Any solution to this problem?

Upvotes: 1

Views: 306

Answers (1)

player0
player0

Reputation: 1

use:

=INDEX(TEXT(SUM(VALUE("00:"&A1:A2)); "[mm]:ss.000"))

enter image description here

Upvotes: 1

Related Questions