The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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])
User | Count |
---|---|
15 | |
13 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
19 | |
12 | |
9 | |
5 |