Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
Im looking for a measure to calculate an average time that my clients fall asleep at night. I have used the following DAX formula for wake up time which is satisfactory:
This works for wake up time as they wake up on the same day between 6am and 9am and so an average somewhere between these points is correct.
However, it doesnt work for sleep onset in the evening. If they fall asleep at 11pm on one night, and 3am the next, the above measure seems to set these times in chronological order, and would come up with an average sleep onset value of 1pm (in the afternoon), rather than 1am (in the morning - which is the value I would want).
Does anyone know a way to allow DAX to identify when the value to be calcualted moves past the 24 hour clock to the next day. The data is saved in query as date/time in the single column for sleep onset time.
Any help would be appreciated.
Thanks
Solved! Go to Solution.
This was an interesting challenge, and the expression below should get your desired result. It takes each row (onset time) and converts it to minutes. If it is < 12 PM, it adds 24 hrs (in minutes) to it, before taking the average. Once the average is calculated, it subtracts the 24 hrs back off (if >midnight), and converts the minutes back to hours and minutes.
Correct Average =
VAR avgtimeinminutes =
AVERAGEX (
Sleep,
VAR timeinminutes =
HOUR ( Sleep[Onset] ) * 60
+ MINUTE ( Sleep[Onset] )
VAR adjminutes =
IF ( timeinminutes < 720, timeinminutes + 1440, timeinminutes )
RETURN
adjminutes
)
VAR avgtimecorrection =
IF ( avgtimeinminutes < 1440, avgtimeinminutes, avgtimeinminutes - 1440 )
VAR avghour =
QUOTIENT ( avgtimecorrection, 60 )
VAR avgmin =
MOD ( avgtimecorrection, 60 )
RETURN
FORMAT ( TIME ( avghour, avgmin, 0 ), "h:mm am/pm" )
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
This was an interesting challenge, and the expression below should get your desired result. It takes each row (onset time) and converts it to minutes. If it is < 12 PM, it adds 24 hrs (in minutes) to it, before taking the average. Once the average is calculated, it subtracts the 24 hrs back off (if >midnight), and converts the minutes back to hours and minutes.
Correct Average =
VAR avgtimeinminutes =
AVERAGEX (
Sleep,
VAR timeinminutes =
HOUR ( Sleep[Onset] ) * 60
+ MINUTE ( Sleep[Onset] )
VAR adjminutes =
IF ( timeinminutes < 720, timeinminutes + 1440, timeinminutes )
RETURN
adjminutes
)
VAR avgtimecorrection =
IF ( avgtimeinminutes < 1440, avgtimeinminutes, avgtimeinminutes - 1440 )
VAR avghour =
QUOTIENT ( avgtimecorrection, 60 )
VAR avgmin =
MOD ( avgtimecorrection, 60 )
RETURN
FORMAT ( TIME ( avghour, avgmin, 0 ), "h:mm am/pm" )
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hey Pat
This is great and question Is there a way to add seconds into this measure?
Change your data model so the sleep onset is captured by a Datetime field, not just a time field. Or have logic that checks if the date value is the same for your timestamps.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
17 |
User | Count |
---|---|
34 | |
21 | |
19 | |
18 | |
10 |