March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi, how should i convert below time value exceed 24hours to seconds in PBI? Please help~~~
Solved! Go to Solution.
Add a custom column in the query editor and put this expression in the pop-up box.
let
hms = List.Transform(Text.Split([Other Work], ":"), each Number.From(_)),
result = hms{0}*60*60 + hms{1}*60 + hms{2}
in
result
Pat
Add a custom column in the query editor and put this expression in the pop-up box.
let
hms = List.Transform(Text.Split([Other Work], ":"), each Number.From(_)),
result = hms{0}*60*60 + hms{1}*60 + hms{2}
in
result
Pat
Thank you so much ! it works perfectly for me!
Hi @AAAbbbnewbie :
- First, in Power Query, separate the time by character : (You will get three columns: hours,minutes and seconds).
-Then, create a custom column:
Time= [Other work Hours]*3600+[Other work Minutes]*60+[Other work Seconds]
Thanks for sharing 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
12 | |
9 | |
7 |
User | Count |
---|---|
38 | |
32 | |
28 | |
12 | |
11 |