Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello,
is it possible to subtract the 2 columns below and get the answer in a time format.
The format that I am looking for would be
Solved! Go to Solution.
In the query editor, add your column where you subtract the two columns, which will result in a duration. Change the type to a decimal number (that will be in days). Load the data, then go to the Diagram View and use a custom format string to display it as a datetime with a format string of hh:nn:ss
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi, @Anonymous
According to your description and sample data, I can clearly understand your requirement, you can try this calculated column to output the duration time in the correct format:
Duration =
var _diff=[Date2]-[Date1]
return
HOUR(_diff)&":"&MINUTE(_diff)&":"&SECOND(_diff)
And you can get what you want, like this:
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
In the query editor, add your column where you subtract the two columns, which will result in a duration. Change the type to a decimal number (that will be in days). Load the data, then go to the Diagram View and use a custom format string to display it as a datetime with a format string of hh:nn:ss
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
87 | |
81 | |
53 | |
37 | |
35 |