Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
i am trying to calcurlate average handled time
i have creaated a custom column which divides total handled time by handled calls to get my average call time which then shows per row which is ok for some of my data but the problem i have is i have to display the data which groups some of the rows. for example to report on DINO calls they have 4 lines which feed into this, this means when i display it in a visulisation it is averaging the average as it is grouping together those 4 lines to show the aveage,
has anyone come up against this before and has some advise/tips?
Solved! Go to Solution.
Hello @roryv2002,
1. Create a measure to calculate the total handled time for each group
TotalHandledTime_Grouped = SUM('YourTable'[TotalHandledTime])
2. Create a measure to calculate the total handled calls
HandledCalls_Grouped = SUM('YourTable'[HandledCalls])
3. Create a measure that divides the total
AverageCallTime = DIVIDE([TotalHandledTime_Grouped], [HandledCalls_Grouped])
Hello @roryv2002,
1. Create a measure to calculate the total handled time for each group
TotalHandledTime_Grouped = SUM('YourTable'[TotalHandledTime])
2. Create a measure to calculate the total handled calls
HandledCalls_Grouped = SUM('YourTable'[HandledCalls])
3. Create a measure that divides the total
AverageCallTime = DIVIDE([TotalHandledTime_Grouped], [HandledCalls_Grouped])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
12 | |
11 | |
10 | |
9 |
User | Count |
---|---|
18 | |
14 | |
14 | |
13 | |
12 |