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

Replicar fórmula de Excel - substracciones recursivas

Hola. Estoy intentando replicar la fórmula de Excel en Power BI DAX. Tengo columna de fecha(A) con fecha, columna de progreso(B) con entero, columna izquierda (C) con entero. Esto pretendía ser una herramienta de monitoreo del progreso del proyecto. Así que el equipo está empezando con 100k instancias para procesar y en cada día hacen cierto progreso, por lo que en la celda C2 - 100000-B2, pero a partir de C3 c2 - B3, C4 - C3 - B4 y así sucesivamente...

La ayuda será apreciada.

Gracias

Michal

1 ACCEPTED SOLUTION
AllisonKennedy
Super User
Super User

Puede hacerlo calculando un total en ejecución o una suma acumulada. Entonces sólo tiene que hacer 100000- total de carrera.

Así que para su ejemplo:
Las instancias restantes 100000- SUMX(FILTER(ALL(Table), Table[Date] >- EARLIER(Table[Date]) ), Table[left])

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

View solution in original post

3 REPLIES 3
AllisonKennedy
Super User
Super User

Puede hacerlo calculando un total en ejecución o una suma acumulada. Entonces sólo tiene que hacer 100000- total de carrera.

Así que para su ejemplo:
Las instancias restantes 100000- SUMX(FILTER(ALL(Table), Table[Date] >- EARLIER(Table[Date]) ), Table[left])

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Anonymous
Not applicable

¡Muchas gracias! Eso era exactamente lo que necesitaba. Sólo cambié

aggregate_instances_by_date[last_updated] > EARLIER(aggregate_instances_by_date[last_updated] a:
aggregate_instances_by_date[last_updated] <-EARLIER(aggregate_instances_by_date[last_updated]
por lo que es la forma cronológica correcta
amitchandak
Super User
Super User

@Wolski , ¿Puede compartir datos de ejemplo y salida de ejemplo en formato de tabla? O una muestra de pbix después de eliminar datos confidenciales.

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.