This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I am trying to gain an average 'tip time' of a lorry for last week and yesterday.
I can't seem to be able to select the average the usual way, i only have the option to select the 'fastest' and 'earliest'
Any ideas if there is a Dax code that could get an average time?
Many thanks
Lisa
Hi @lisaburton
Please try the following measure
=
VAR AverageSeconds =
AVERAGEX (
'Table',
VAR TipTime = 'Table'[Tip Time]
RETURN
3600 * HOUR ( TipTime )
+ 60 * MINUTE ( TipTime )
+ SECOND ( TipTime )
)
VAR Hours =
FORMAT ( QUOTIENT ( AverageSeconds, 3600 ), "00" )
VAR Minutes =
FORMAT ( QUOTIENT ( MOD ( AverageSeconds, 3600 ), 60 ), "00" )
VAR Seconds =
FORMAT ( MOD ( MOD ( AverageSeconds, 3600 ), 60 ), "00" )
RETURN
Hours & ":" & Minutes & ":" & Seconds
You can also simplify as you don't have "Seconds"
=
VAR AverageMinutes =
AVERAGEX (
'Table',
VAR TipTime = 'Table'[Tip Time]
RETURN
60 * HOUR ( TipTime )
+ MINUTE ( TipTime )
)
VAR Hours =
FORMAT ( QUOTIENT ( AverageMinutes, 60 ), "00" )
VAR Minutes =
FORMAT ( MOD ( AverageMinutes, 60 ), "00" )
RETURN
Hours & ":" & Minutes & ":" & "00"
Hi @lisaburton,
I would consider converting data type from time to duration.
Working with durations you can get an average as easy as usual.
If you need a tutorial on this topic, please let me know. Then I would upload one shortly.
Liked this post? More Content on:
https://www.youtube.com/channel/UC2lAgCgfyLCHsRv0h-ETBWQ
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |