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 )
perfectreign
2 years agoFrequent Visitor
Thank you all!!! I have it now.