Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.