Forum Discussion

roryv2002's avatar
roryv2002
Frequent Visitor
3 years ago
Solved

How to get around average a average

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 ...
  • Sahir_Maharaj's avatar
    3 years ago

    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])