Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
hi ,
i have one some data in seconds but have to perform sum on it and show it in hours and minutes , but the problem is after 24 hours it it again stating from 0
Solved! Go to Solution.
Hi @ajsingh,
You can refer to @MarcelBeug's reply here:
= #time(0,0,0)+ #duration(0,0,0,List.Sum(#"Changed Type"[Column1]))
Best Regards,
Qiuyun Yu
Possibly a better reference is here, where I explain that time values >= 24:00 are actually durations., not values of type time.
In the last post in the link I present an alternattive for durations >= 24:00.
#duration(0,0,0,[column_name])
this is working fine for my case, thanks a lot for the help
Hi @ajsingh,
You can refer to @MarcelBeug's reply here:
= #time(0,0,0)+ #duration(0,0,0,List.Sum(#"Changed Type"[Column1]))
Best Regards,
Qiuyun Yu
#duration(0,0,0,[column_name])
this is working fine for my case, thanks a lot for the help
Possibly a better reference is here, where I explain that time values >= 24:00 are actually durations., not values of type time.
In the last post in the link I present an alternattive for durations >= 24:00.