Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hola
Tengo una tabla con un ID de proyecto, Fecha y Estado. Cada mes, agredo nuevos datos bajo el existente y me gustaría tener una tabla que siempre compare el último mes disponible en la tabla con el mes anterior y agreero el identificador de proyecto que desapareció en el mes actual, junto con su último estado (del mes anterior).
Además, todos mis datos están en la misma tabla, por lo que no compararé el contenido de dos tablas, sino solo el contenido de una tabla que pertenece a este mes y al mes anterior.
Leyendo el foro entiendo que podría ser capaz de lograr esto mediante el uso de la función EXCEPT, pero no puedo conseguir que funcione.
¡Gracias!
Solved! Go to Solution.
@LostintheBIu - Necesitaría datos de muestra para ser específicos, pero en teoría:
Missing Projects Table =
VAR __CurrentMonth = MAX([Date])
VAR __PreviousMonth = EOMONTH(__CurrentMonth,-1)
VAR __CurrentTable =
SELECTCOLUMNS(
FILTER(
ALL('Table'),
YEAR([Date])=YEAR(__CurrentMonth) && MONTH([Date])=MONTH(__CurrentMonth)
),
"Project ID",[ProjectID]
)
VAR __PreviousTable =
SELECTCOLUMNS(
FILTER(
ALL('Table'),
YEAR([Date])=YEAR(__PreviousMonth) && MONTH([Date])=MONTH(__PreviousMonth)
),
"Project ID",[ProjectID]
)
RETURN
EXCEPT(__PreviousTable,__CurrentTable)
@LostintheBIu - Necesitaría datos de muestra para ser específicos, pero en teoría:
Missing Projects Table =
VAR __CurrentMonth = MAX([Date])
VAR __PreviousMonth = EOMONTH(__CurrentMonth,-1)
VAR __CurrentTable =
SELECTCOLUMNS(
FILTER(
ALL('Table'),
YEAR([Date])=YEAR(__CurrentMonth) && MONTH([Date])=MONTH(__CurrentMonth)
),
"Project ID",[ProjectID]
)
VAR __PreviousTable =
SELECTCOLUMNS(
FILTER(
ALL('Table'),
YEAR([Date])=YEAR(__PreviousMonth) && MONTH([Date])=MONTH(__PreviousMonth)
),
"Project ID",[ProjectID]
)
RETURN
EXCEPT(__PreviousTable,__CurrentTable)
Hola Greg!
Después de ajustar algunas variables, a la solución funcionó perfectamente. Sólo una pequeña cosa adicional que estaba preguntando inicialmente. Si también tengo una columna llamada "presupuesto", supongamos, ¿cómo puedo copiar esa información del último mes en la tabla recién creada, junto al identificador del proyecto?
¿Dónde debe incluirse el código?
¡Gracias!
@LostintheBIu - Deberías poder agregar una columna calculada a esa tabla y tal vez usar algo como LOOKUPVALUE o MAXX(FILTER(...) ...) ?
Unfortunately I cannot use LOOKUPVALUE because having 3 or more months of data, a project ID might appear this (in the first two months) but not in the third month. This project ID will be in my table but the LOOKUPVALUE will return an error.
I was unable to make the MAXX(Filter()) work. Basically I want a vlookup that only takes into account rows where the Date equals today's month -1. How should this maxx and filter be built?
@LostintheBIu , Mirando esto se puede utilizar Time Intelligence.
Ejemplo. Mofidy según el propósito
MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))
last month Sales = CALCULATE(SUM(Sales[Sales Amount]),previousmonth('Date'[Date]))
last MTD (complete) Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-1,MONTH))))
previous month value = CALCULATE(sum('table'[total hours value]),previousmonth('Date'[Date]))
diff = [MTD Sales]-[last MTD Sales]
diff % = divide([MTD Sales]-[last MTD Sales],[last MTD Sales])
Si no se resuelve: ¿puede compartir datos de ejemplo y salida de ejemplo en formato de tabla? O una muestra de pbix después de eliminar datos confidenciales.
Para obtener lo mejor de la función de inteligencia del tiempo. Asegúrese de que tiene un calendario de fechas y que se ha marcado como la fecha en la vista de modelo. Además, únete a ella con la columna de fecha de tus hechos. recomienda:
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/
Vea si mi seminario web sobre Time Intelligence puede ayudar: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-Y...
Apreciamos tus Felicitaciones.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
15 | |
14 |
User | Count |
---|---|
2 | |
2 | |
1 | |
1 | |
1 |