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.
hiii
He creado una columna calculada para calcular a la espera tym lo que es la consulta para formar una medida
Solved! Go to Solution.
Hola @greeshma
utilizar la siguiente
waiting tym =
MOD(
( SELECTEDVALUE('Phone Call Data'[Disconnect Time]) -
SELECTEDVALUE('Phone Call Data'[Connect Time]) -
SELECTEDVALUE('Phone Call Data'[Hold Time]) -
SELECTEDVALUE('Phone Call Data'[Talk Duration])
)
,
60
)
¿Resolví tu problema? ¡Marca mi puesto como una solución!
Apreciamos sus Felicitaciones, Pulse el botón pulgares hacia arriba !!
saludos
Pranit
Hope it resolves your issue? Did I answer your question? Mark my post as a solution! Appreciate your Kudos, Press the thumbs up button!! Linkedin Profile |
Hola @greeshma ,
Pls comparte algunos datos de muestra y la salida esperada para ayudarle a
Gracias
Harsh Nathani
@Anonymous
Hi, can you check and let me know if the solution I provided worked for you please?
________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
no sorry its not the correct solution
@Anonymous
Thanks for the feedback
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hola @greeshma
utilizar la siguiente
waiting tym =
MOD(
( SELECTEDVALUE('Phone Call Data'[Disconnect Time]) -
SELECTEDVALUE('Phone Call Data'[Connect Time]) -
SELECTEDVALUE('Phone Call Data'[Hold Time]) -
SELECTEDVALUE('Phone Call Data'[Talk Duration])
)
,
60
)
¿Resolví tu problema? ¡Marca mi puesto como una solución!
Apreciamos sus Felicitaciones, Pulse el botón pulgares hacia arriba !!
saludos
Pranit
Hope it resolves your issue? Did I answer your question? Mark my post as a solution! Appreciate your Kudos, Press the thumbs up button!! Linkedin Profile |
@greeshma
Utilice lo siguiente como medida
waiting tym =
MOD(
( MAX('Phone Call Data'[Disconnect Time]) -
MAX('Phone Call Data'[Connect Time]) -
MAX('Phone Call Data'[Hold Time]) -
MAX('Phone Call Data'[Talk Duration])
)
,
60
)
________________________
¿He respondido a tu pregunta? Marque este post como una solución, esto ayudará a otros!.
Haga clic en el icono Thumbs-Up si le gusta esta respuesta 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Por favor, pruebe esta expresión. Si no desea el tiempo de espera total, puede usar AVERAGEX en su lugar para obtener el tiempo de espera promedio.
waiting tym =
DIVIDE (
SUMX (
'Phone Call Data',
'Phone Call Data'[Disconnect Time] - 'Phone Call Data'[Connect Time] - 'Phone Call Data'[Hold Time] - 'Phone Call Data'[Talk Duration]
),
60
)
Si esto funciona para usted, márquelo como la solución. Los elogios también son apreciados. Por favor, avísame si no.
saludos
palmadita
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.