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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a column named [Average Handle Time]. The data here is in date/time format hh:mm:ss. What I want to do is take a time like 00:22:17 and convert it to minutes and seconds as a decimal. So this turns in to 22.28. I have used the built in modeling functions, but I want it to be recognized as a number and not text. Any help is appreciated.
Solved! Go to Solution.
Hi @joshcomputer1,
Please try in a column this formula ( adapt your file where you have your date time):
=HOUR([Time])*60+MINUTE([Time])+SECOND([Time])/60
Ninter
Hi @joshcomputer1,
Please try in a column this formula ( adapt your file where you have your date time):
=HOUR([Time])*60+MINUTE([Time])+SECOND([Time])/60
Ninter