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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Devolver datos de fila anterior, SQL de consulta directa

Hola a todos

Estoy tratando de mostrar la diferencia de tiempo entre 'Tiempo creado' por el empleado. He encontrado soluciones que usan una columna calculada, pero estoy usando una consulta directa a un servidor SQL y esto parece impedirme poder usar columnas calculadas.

La nueva columna mostrará 7 min, 5 min, 5 min, etc.

thomas_p_1-1597759100955.png

Cualquier ayuda sería apreciada!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@thomas_p , no podrá crear una columna como se admite anteriormente.

Prueba una medida como esta

diff ?
maxx(summarize(Table, Table[Employee], Table[time created],"_1",
max(Table[time created]) -maxx(filter(allselected(Table), Table[employee] ?max(Table[employee]) && Table[time created] <max(Table[time created])),Table[time created])
),[_1])

Esto debería funcionar con el empleado y el tiempo creado. Vea si esto puede funcionar para usted

Pocas columnas compatibles que cubrí en la lista de reproducción - https://www.youtube.com/watch?v=My0bLn9voo4&list=PLPaNVDMhUXGbKatyDdOhGbTL3xW2Xy6pA

View solution in original post

3 REPLIES 3
lit2018pbi
Resolver II
Resolver II

@thomas_p

Solución alternativa en SQL mediante la función De cliente potencial y la diferencia de fecha posterior de la siguiente manera

1. LEAD([Tiempo creado],1) OVER (PARTITION BY Employee ORDER BY [Time Created]) AS Lead
2. DATEDIFF(MINUTE,[Time Created],LEAD([Time Created],1) OVER (PARTITION BY Employee ORDER BY [Time Created])) AS [Difference]

lead.PNG

amitchandak
Super User
Super User

@thomas_p , no podrá crear una columna como se admite anteriormente.

Prueba una medida como esta

diff ?
maxx(summarize(Table, Table[Employee], Table[time created],"_1",
max(Table[time created]) -maxx(filter(allselected(Table), Table[employee] ?max(Table[employee]) && Table[time created] <max(Table[time created])),Table[time created])
),[_1])

Esto debería funcionar con el empleado y el tiempo creado. Vea si esto puede funcionar para usted

Pocas columnas compatibles que cubrí en la lista de reproducción - https://www.youtube.com/watch?v=My0bLn9voo4&list=PLPaNVDMhUXGbKatyDdOhGbTL3xW2Xy6pA

Anonymous
Not applicable

@amitchandak gracias, esto funciona exactamente como lo necesito!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.