我有一列会产生小数分钟的列,例如
71.5
我希望另一列将其格式设置为HH:MM形式的Duration,将四舍五入为分钟,即
1:12
或
1h 12m
答案 0 :(得分:2)
请尝试:
=roundup(A1,0)/1440
和格式:
[h]:mm
答案 1 :(得分:1)
= round(divide(div(A1-mod(A1,60),60))&“ h”&round(mod(A1,60))&“ m”
将向上取整11.5分钟但向下取整11.25。我会考虑,即使那应该说12。
编辑:上述情况有一个微妙的情况。 IT表示179.5是2小时60分钟。
更好是
=round(divide(round(A1)-mod (round(A1),60),60)) & " h " & (mod (round(A1),60)) & " m"
不需要第一轮比赛,但我不希望浮点数疯狂。
如果您真的想71.25说1小时12分钟,请继续
=round(divide(ceiling(A1)-mod (ceiling(A1),60),60)) & " h " & (mod (CEILING(A1),60)) & " m"