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.
示例:在 2016 年 7 月 19 日上午 10:00 创建了一条记录,我希望将其转换为小时(时间戳)并在 quickbase 中显示为 54 小时。感谢你的帮助
如果要将时间戳转换为公式字段中的小时数,可以使用ToTimeOfDay()andHours()函数来完成。假设您只想显示 Date Created 字段的小时,您可以将此公式放入公式数字字段中:
ToTimeOfDay()
Hours()
Hour(ToTimeOfDay([Date Created]))
如果您出于某种原因需要使用公式 - 持续时间字段,只需将以上所有内容通过Hours()函数即可:
Hours(Hour(ToTimeOfDay([Date Created])))