Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

consulta para formar una medida

hiii

He creado una columna calculada para calcular a la espera tym lo que es la consulta para formar una medida

esperando tym - MOD( ('Datos de llamada telefónica'[Tiempo de desconexión]-'Datos de llamada telefónica'[Tiempo de conexión]-'Datos de llamada telefónica'[Tiempo de espera]-'Datos de llamada telefónica'[Duración de la charla]),60)
1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

7 REPLIES 7
harshnathani
Community Champion
Community Champion

Hola @greeshma ,

Pls comparte algunos datos de muestra y la salida esperada para ayudarle a

Gracias

Harsh Nathani

Fowmy
Super User
Super User

@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 🙂

YouTube, LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Anonymous
Not applicable

no sorry its not the correct solution

@Anonymous 

 

Thanks for the feedback

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Anonymous
Not applicable

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

Fowmy
Super User
Super User

@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 🙂

Youtube Linkedin

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

mahoneypat
Microsoft Employee
Microsoft Employee

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





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors