Display milliseconds in Excel

后端 未结 4 1422
深忆病人
深忆病人 2020-12-01 05:18

I am trying to display milliseconds in an Excel macro. I have a column of integers which are timestamps in milliseconds (e.g. 28095200 is 7:48:15.200 am), and I want to mak

4条回答
  •  再見小時候
    2020-12-01 05:34

    I did this in Excel 2000.

    This statement should be: ms = Round(temp - Int(temp), 3) * 1000

    You need to create a custom format for the result cell of [h]:mm:ss.000

提交回复
热议问题