Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have data from a Service Desk system and building a dashboard for management and need average time.
i have created this mesure to convert the time to "hh:mm:ss"
Solved! Go to Solution.
Hi, @Dolf
Based on your information, i created a table:
Create a new Measure , then use the following DAX:
Average First Response Time =
VAR AvgTimeInBhrs = AVERAGE('Table'[First Response time])
RETURN
TIME(
DIVIDE(AvgTimeInBhrs, 3600000),
DIVIDE(MOD(AvgTimeInBhrs, 3600000), 60000),
DIVIDE(MOD(AvgTimeInBhrs, 60000), 1000)
)
Change its time type to hh:mm:ss
This measure is then placed in the card view, and when a piece of data is selected, the card will display the corresponding time, the following is my preview:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Dolf
Based on your information, i created a table:
Create a new Measure , then use the following DAX:
Average First Response Time =
VAR AvgTimeInBhrs = AVERAGE('Table'[First Response time])
RETURN
TIME(
DIVIDE(AvgTimeInBhrs, 3600000),
DIVIDE(MOD(AvgTimeInBhrs, 3600000), 60000),
DIVIDE(MOD(AvgTimeInBhrs, 60000), 1000)
)
Change its time type to hh:mm:ss
This measure is then placed in the card view, and when a piece of data is selected, the card will display the corresponding time, the following is my preview:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, I have created a sample table like below:
Then created below measure:
I can see the Agent wise average.
If this resolves your problem then please mark this as solution, Thanks!
Now put that on a "Card", it does not work.
I have created this measure:
Hi,
First you need to have average of all the rows then try to convert into hh:mm:ss. Hence in your measure, create a variable like VAR _avgTime = AVERAGE (column_name). Then try to extract Hour, Min, Sec from there.
If this resolves your problem then please mark it as solution, Thanks!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
96 | |
69 | |
44 | |
38 | |
29 |
User | Count |
---|---|
155 | |
91 | |
61 | |
42 | |
42 |