Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 forumula:
Solved! Go to Solution.
the close branket is in the wrong position. you can try to move it to the end.
VAR days = INT(Elapsed_Time /900 )
Proud to be a Super User!
Thank you all!!! I have it now.
Hi @KaiPonte
The following is a calculated column to do your conversion.
Fmt =
VAR _TotMin = [Minutes]
VAR _x1 = _TotMin / 1440
VAR _Days = INT( _x1 )
VAR _Remainder = _x1 - _Days
VAR _Hrs = INT( _Remainder * 24 )
VAR _Mins = _TotMin - ( ( _Days * 24 ) + _Hrs ) * 60
RETURN
_Days & " d " & _Hrs & " h " & _Mins & " m"
I hope you are able to adapt this.
Formatting Time from Minutes.pbix
the close branket is in the wrong position. you can try to move it to the end.
VAR days = INT(Elapsed_Time /900 )
Proud to be a Super User!
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.)
you are welcome
Proud to be a Super User!
User | Count |
---|---|
84 | |
79 | |
71 | |
48 | |
43 |
User | Count |
---|---|
111 | |
54 | |
50 | |
40 | |
40 |