Excel TIME duration over 24 hours

后端 未结 3 1136
情深已故
情深已故 2021-01-27 04:05

Data is:

A1 = 29. B1 = 30. C1 = 2. 

D1 = TIME(A1, B1, C1).

How can I get D1 to return 29:30:02?

Formatting the D1 cell to

3条回答
  •  失恋的感觉
    2021-01-27 04:30

    Time is trying to give you clock time so 29hrs=5am. So if you want that result how about just:

    D1=CONCATENATE(A1,":",B1,":",C1)
    

    If then you want the 02 you would have to interject a little formatting to those columns...

提交回复
热议问题