1. Open Microsoft Excel
2. Select cell B1, name it as seconds and in the cell B2 type the value to be converted to HH:MM:SS format.
=CONCATENATE(TEXT(TRUNC(B2/3600),"00"),":",TEXT(TRUNC(MOD(B2,3600)/60),"00"),":",TEXT(MOD(MOD(B2,3600),60),"00"))
=CONCATENATE(TEXT(TRUNC(B2/3600),"00"),":",TEXT(TRUNC(MOD(B2,3600)/60),"00"),":",TEXT(MOD(MOD(B2,3600),60),"00"))
0 comments:
Post a Comment