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

Be 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

Reply
Anonymous
Not applicable

Total por mes y Total acumulado en formato tabular

Hola

Estoy en el proceso de crear una tabla como esta. ¿Es posible? Tengo unos pocos miles de filas y quiero producir datos por mes y acumulativos hasta la fecha. Además, la columna de estado debe crearse manualmente y vincularse a las otras columnas. Actualmente estoy pensando en DAX y no tengo idea de cómo proceder. Cualquier ayuda será muy appriciated. Salud, AA

Image_1.PNG

2 REPLIES 2
V-lianl-msft
Community Support
Community Support

Hola @StupendousE ,

Puedes probar lo que @amitchandak dijo antes.

Pero luego viene la cuestión del rendimiento de los informes. Si el conjunto de datos es grande, se recomienda crear una tabla y crear una relación entre dos tablas.

Saludos
Liang
Si este post ayuda, por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

amitchandak
Super User
Super User

Es posible que necesites una mesa como esta

Nueva mesa
unión (
resumir (Tabla,Tabla[Mes],"Estado","Paquete de contrato emitido","Mes",[Valor del mes CPI],"Hasta la fecha", [Hasta el IPC de valor de adere]),
Resumir (Tabla,Tabla[Mes],"Estado","Contacto Ejecutado","Mes",[Valor del mes CE],"Hasta la fecha",[Hasta el valor de Dare CE])
)

Para la fecha de hasta la fecha se puede utilizar la inteligencia de tiempo y la tabla de fechas

MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(('Date'[Date])))
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(('Date'[Date]),"12/31"))
This Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD((ENDOFYEAR('Date'[Date])),"12/31"))
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(date,date[date] <=maxx(date,date[date])))
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(date,date[date] <=max(Sales[Sales Date])))

Para obtener lo mejor de la función de inteligencia de tiempo. Asegúrese de que tiene un calendario de fechas y se ha marcado como la fecha en la vista de modelo. Además, únase a él con la columna de fecha de su hecho/s. Consulte:
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

También puede explorar "Mostrar en filas" en la matriz

https://www.burningsuit.co.uk/blog/2019/04/7-secrets-of-the-matrix-visual/

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors