Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一份报告,我想以小时和分钟显示时间(17 小时 30 分钟)
数据集以小数形式返回此值(例如 17.5)
我如何将此十进制转换为上面指定的格式(17 小时 30 分钟)。是否有某种内置功能可以轻松做到这一点?
这适用于您的特定示例:
=Floor(Fields!MyValue.Value) & " hrs " & CInt((Fields!MyValue.Value - Floor(Fields!MyValue.Value)) * 60) & " mins"
您可能需要针对所有可能的情况进行调整,但这应该是一个很好的起点。