Forum Discussion
Calculating Time from Start & End Times
- 6 years ago
Hi HenryJS ,
You could use Time.Hour() in query editor.
if [Start]>[End] then 24-Time.Hour([Start])+Time.Hour([End]) else Time.Hour([End])-Time.Hour([Start])Here is the result.
- 6 years ago
Hi HenryJS ,
Does that make sense? If so kindly mark my answer as a solution to close the case. Thanks in advance.
HenryJS try this expression
Column = DATEDIFF ( [Column1], [Column2], HOUR)
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
- amitchandak6 years ago
Super User
HenryJS , The formula of parry2k will give the whole number. Not time.
You can do like
time([Date diff],0,0)
or
- parry2k6 years ago
Super User
HenryJS you should keep the type of this new column to be a whole number, not time and I guess that is the issue. And as a best practice, always use table name with the columns in the DAX expression, not just column name and for measures never use the table name.
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
- HenryJS6 years ago
Post Prodigy
amitchandak parry2k how do I get the time?
- amitchandak6 years ago
Super User
HenryJS , That is what your initial formula was doing ? was it a measure or column?