将小数更改为 mm:ss 格式 Excel
我在Excel中有十进制格式的持续时间,例如35.78分钟,我想将其更改为分钟/秒格式,因此例如35.78分钟在Excel中变成35分47秒。有什么办法可以这样格式化吗?我尝试过 mm:ss 的自定义过滤器,但这不起作用
I have duration in decimal format in excel, e.g. 35.78 minutes, which I wanted to change to minute/second format so e.g. 35.78minutes becomes 35 minutes 47seconds in excel. Any way I can format it that way? I have tried the custom filter of mm:ss but that does not work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要一些数学操作将小数值转换为时间值。 try-
然后将单元格格式为
mm:ss
或Direct公式
= text((A1/24)/60,“ MM:SS”)
You need some math operation to convert decimal values to time values. Try-
Then format the cell as
mm:ss
Or direct formula
=TEXT((A1/24)/60,"mm:ss")