怎么把现在的时间和和一个时间类型的单元格进行时间差计算,最终得出的样式是hh:mm:ss的格式
类似于这样:
datesubdate(now(),E2,"h") + "小时" + datesubdate(now(),E2,"m") % 60 + "分钟" + datesubdate(now(),E2,"s") % 60 + "秒"
这个链接:https://help.fanruan.com/finereport/doc-view-4855.html
DATETONUMBER() 先用这个函数 转成毫秒 再相减 最后转回来