The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have a column time-spent:
1H3M
4H7M
2M
I need to convert de time to be comptable in excel.
For example 1H30M will be in total hours 1.5h
Solved! Go to Solution.
@Anonymous , Try a new column
new column =
var _1 = SUBSTITUTE([column], "H", ".")
var _2 = SUBSTITUTE(_2, "M", "")
return
Quotient(_2*1,1) + (mod(_2,1)*10/6)
@Anonymous , Try a new column
new column =
var _1 = SUBSTITUTE([column], "H", ".")
var _2 = SUBSTITUTE(_2, "M", "")
return
Quotient(_2*1,1) + (mod(_2,1)*10/6)
Hi,
Can you tell us exactly how is stored the time you want to convert.
Is it like you wrote 1h3m with the letters ? or more classic 01:03 ?
A screen copy of your data (not sensitive ones) might help us to help you 😉