gpt4 book ai didi

date - 如何将秒转换为 hh :mm format in Power Bi?

转载 作者:行者123 更新时间:2023-12-05 01:32:16 24 4
gpt4 key购买 nike

在 Power Bi 中,我有一个表,其中包含用户在几秒钟内的 NameTimeSpent
我想将所有用户花费的总秒数转换为持续时间格式 (hh:mm)
当我从数据库查询中为每个用户以 hh:mm 格式获取秒数时,值会像这些 12:63 等一样出现。将这些值导入 power bi 后,我尝试将其数据类型设置为 DateTime 格式,但 power bi 显示错误说它不是一个有效的值。如果我将列的数据类型设置为 string,则字符串不会相加。

什么是理想的方法?

最佳答案

您可以尝试以下 DAX:

HHMMSS = 
INT(Table[TimeSpent] / 3600) & ":" &
RIGHT("0" & INT((Table[TimeSpent] - INT(Table[TimeSpent] / 3600) * 3600) / 60), 2) & ":" &
RIGHT("0" & MOD(Table[TimeSpent], 3600), 2)

Source

关于date - 如何将秒转换为 hh :mm format in Power Bi?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45584262/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com