The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I found a Dax formula for converting seconds into Hours, Min, seconds but want to also include days. Not sure how to manipulate the formula for that. Could use some help. Here is what I have, please help. Thanks
@scottm0690 , Add days too in calculations
Time Left =
VAR Days =
ROUNDDOWN ( [Actual time left] / 3600*24, 0 )
VAR hours =
ROUNDDOWN ( MOD([Actual time left],3600*24 )/ 3600, 0 )
VAR minutes =
ROUNDDOWN ( MOD ( [Actual time left], 3600 ) / 60, 0 )
VAR seconds =
INT ( MOD ( [Actual time left], 60 ) )
VAR milliseconds =
round(MOD ( [Actual time left], 1 ) * 100,0)
RETURN
FORMAT(Days,"000") & ":"
FORMAT(hours,"00") & ":"
& FORMAT(minutes, "00")
& ":"
& FORMAT(seconds, "00")
& "."
& FORMAT(milliseconds, "00")
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |