Forum Discussion

sam_rea_02's avatar
sam_rea_02
Frequent Visitor
3 years ago
Solved

How to sum a time in power bi?

Hi All,

 

Need your help guys, below is the data i have.

DATETimeCalls AnsweredAHT Sec
08/06/20238:0010:04:01
08/06/20238:0010:22:27
08/06/20239:0010:14:15
08/06/20239:3010:15:25
08/06/202312:0010:02:27
08/06/202312:3010:02:03

when i put it on pivot table here is the output for the  Sum of AHT

to get the AHT= AHT Sec/Calls Answered. I need to get the correct sum when putting it on power bi. I am struggling to resolve this computation on power bi.  Hope you can help

 

  • Hi sam_rea_02 ,

     

    Please try:

    First create a new column:

    Then apply the measure:

    Sum of AHT = TIME(HOUR(SUM('Table'[AHT Sec])/SUM('Table'[Calls Answered])),MINUTE(SUM('Table'[AHT Sec])/SUM('Table'[Calls Answered])),SECOND(SUM('Table'[AHT Sec])/SUM('Table'[Calls Answered])))

    Final output:

    Best Regards,

    Jianbo Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

3 Replies

  • Hi sam_rea_02 ,

     

    Please try:

    First create a new column:

    Then apply the measure:

    Sum of AHT = TIME(HOUR(SUM('Table'[AHT Sec])/SUM('Table'[Calls Answered])),MINUTE(SUM('Table'[AHT Sec])/SUM('Table'[Calls Answered])),SECOND(SUM('Table'[AHT Sec])/SUM('Table'[Calls Answered])))

    Final output:

    Best Regards,

    Jianbo Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • sam_rea_02's avatar
    sam_rea_02
    Frequent Visitor

    I need an output same as the pivot table when I create a matrix.

  • sam_rea_02's avatar
    sam_rea_02
    Frequent Visitor

    Thanks Jianbo for the help. It is a big help.