March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Este es mi código DAX como medida para mostrar el tiempo promedio de la llamada
AVG TIME =
VAR X = SUM('Table'[Column])
VAR Y = A + B
RETURN FORMAT (DIVIDE(X, Y), "hh:mm:ss") & " min"
Mi resultado se ve así
00:14:33
Lo cual es el resultado correcto cuando se compara esto ingresando a Excel y calculando el promedio allí. Me gustaría que esto se mostrara como
14:33
pero tan pronto como ajuste la cadena de formato a
"hh:mm"
Mi resultado cambia y se ve incorrecto. ¿Hay alguna manera de mostrar este valor como "14:33"?
Por favor, pruebe esto
AVG TIME =
VAR X = SUM('Table'[Column])
VAR Y = A + B
VAR _tim =FORMAT (DIVIDE(X, Y), "hh:mm:ss") & " min"
RETURN
MID(_tim, SEARCH(":",_tim,1,1)+1,5)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.