Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Good morning, I press my name is pablo and I am from Argentina and I have a problem to get the average talk time of a telephone exchange, AHT calls, if I on the excel calculate with the average function that value gives me correctly but on power bi I do not find the turn, what I do is calculate the total time of conversation but I do not find the way to get that average, I attach a capture of what I have and if anyone can help me thank you very much.-
Best regards;
Pablo
Solved! Go to Solution.
Thanks There I found the mistake I had, you are a genius or genius!
@Syndicate_Admin , If this in time format you have first convert and take avg
new measure =
var _avg = averageX(Table, hour([Talk Time])*3600 + Minute([Talk Time])*60 + Second([Talk Time]))
return
Time(0,0,_avg)
or
new measure =
var _avg = averageX(Table, hour([Talk Time])*3600 + Minute([Talk Time])*60 + Second([Talk Time]))
return
format(Time(0,0,_avg), "hh:mi:ss" )
Hello, use your solution but I am doing something wrong so it does not work for me, I tell you how to arm it
Sdos.
Pablo
Thanks There I found the mistake I had, you are a genius or genius!