Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! 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
@Anonymous
Hi Fancis, can you please paste the same data in the screenshot?
@Anonymous
Something we can copy-paste 🙂
Sorry I didn't get you.
@Anonymous
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 .
@Anonymous , 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 |
---|---|
8 | |
8 | |
5 | |
4 | |
3 |