Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
Need your help on to understand to calculate percent of calls answered in 15 seconds , 40 seconds using dax from the below mentioned data. For the column reponse/arrive data's are updated in seconds actually. we can add calendar table to slice and dice data
Thanks,
Francis
Sorry I didn't get you.
@FJ83
I mean is it possible you can provide sample data at least you can copy the table values and paste it here. Thank you.
Hi,
I can't paste the values as table in community .
@FJ83 , Try measure like
Measure =
var _1 = countx(filter(Table, Table[Answer Call] <15), [ReportNumber])
return
divide(_1, count(Table[ReportNumber]))
Hi Amit
Sorry , the column Reposnse / arrive values are updated in minutes, so therefore how to apply this scenario in DAX and to get the result ?
Visual like this expected
User | Count |
---|---|
22 | |
14 | |
11 | |
7 | |
5 |
User | Count |
---|---|
24 | |
22 | |
20 | |
15 | |
10 |