Forum Discussion
Anonymous
2 years agoNot applicable
Help Formatting Time from Minutes
In the report I'm building, I'm given a time duration in minutes. I want to convert it to days hours:minutes. (I don't care about seconds.) Based on examples I saw here, I have teh following DAX f...
- 2 years ago
Anonymous
the close branket is in the wrong position. you can try to move it to the end.
VAR days = INT(Elapsed_Time /900 )
ryan_mayu
2 years agoSuper User
Anonymous
the close branket is in the wrong position. you can try to move it to the end.
VAR days = INT(Elapsed_Time /900 )
perfectreign
2 years agoFrequent Visitor
That was perfect, thank you! I now have what I wanted in the report. You can see in the image that my time now is measured in days, hours, and minutes. That's perfect. (I don't need seconds.)
- ryan_mayu2 years agoSuper User
you are welcome