The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I created duration using the DAX function below but in the same table, I should get the attainment which usually means, how much percentage he is sitting in a call.
In excel we do it as time(0,9,0)/agent sitting time.
I tried using this DAX function: = 'Voice data'[Voice AHT - Time (HH:MM:SS)]/Time(0,9,0)
But it isn't working. can anyone help, please.
Solved! Go to Solution.
Hi @Sri_phani
Please try
Attainment =
VAR Duration =
DIVIDE (
SUM ( 'Voice data'[Sum of Voice Duration] ),
SUM ( 'Voice data'[Sum of Voice count] )
)
RETURN
DIVIDE ( 9 * 60, Duration )
Hi @Sri_phani
Please try
Attainment =
VAR Duration =
DIVIDE (
SUM ( 'Voice data'[Sum of Voice Duration] ),
SUM ( 'Voice data'[Sum of Voice count] )
)
RETURN
DIVIDE ( 9 * 60, Duration )
Thank you for the solution. It helped me.
User | Count |
---|---|
16 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |