Converting large time format to decimal in excel

前端 未结 1 1918
梦毁少年i
梦毁少年i 2021-01-28 09:19

I\'m trying to convert a large time value in excel to a decimal number for hours.

I currently have a column adding up \"Ready time\" for a call centre which is 3545:20:0

1条回答
  •  一向
    一向 (楼主)
    2021-01-28 09:37

    Excel counts in days (1 day = 1) so for hours you just multiply by 24, i.e.

    =M54*24

    format result cell as number with required number of decimals

    [the reason your current formula fails is because of DAY function - DAY is day of the month so it fails for you when the time value is >= 32*24 = 768 hours]

    0 讨论(0)
提交回复
热议问题