The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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