Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Good Morning,
sorry for my english.
i have "H Joker" = total minutes work
i have "H Joker1" = total minuts work (format with text and hh:mm)
H Joker1 =
i would have under column "H Joker1" a total hours how?
thank you
Andrea
Solved! Go to Solution.
@andreaturri27 , Create a measure like
H Joker1 =
var _m = sum('Testa Report'[H Joker])
var hourNo=INT(_m/60)
var minuteNO=MOD(_m,60)
var secondNo=INT((_m-INT(_m))*60)
return
FORMAT(hourNo,"#00")&":"&FORMAT(minuteNO,"#00")
https://radacad.com/calculate-duration-in-days-hours-minutes-and-seconds-dynamically-in-power-bi-usi...
https://social.technet.microsoft.com/wiki/contents/articles/33644.powerbi-aggregating-durationtime-i...
@andreaturri27 , Create a measure like
H Joker1 =
var _m = sum('Testa Report'[H Joker])
var hourNo=INT(_m/60)
var minuteNO=MOD(_m,60)
var secondNo=INT((_m-INT(_m))*60)
return
FORMAT(hourNo,"#00")&":"&FORMAT(minuteNO,"#00")
https://radacad.com/calculate-duration-in-days-hours-minutes-and-seconds-dynamically-in-power-bi-usi...
https://social.technet.microsoft.com/wiki/contents/articles/33644.powerbi-aggregating-durationtime-i...
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.