Excel 2007: How to display mm:ss format not as a DateTime (e.g. 73:07)?

后端 未结 7 471
情歌与酒
情歌与酒 2021-01-07 17:42

I need to create and Excel table that computes daily training times. each row has the following fields: Date, Distance, Time and Minutes/Km.
My main problem is that I w

7条回答
  •  独厮守ぢ
    2021-01-07 18:14

    as text:

    =CONCATENATE(TEXT(cell;"d");" days ";TEXT(cell;"t");" hours ";MID(TEXT(cell;"hh:mm:ss");4;2);" minutes ";TEXT(cell;"s");" seconds")
    

提交回复
热议问题