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
JohnYeldham
Frequent Visitor

Añadir nueva columna con filtros basados en los valores de fila actuales

Mi pregunta principal aquí es sobre cómo filtrar en función de un valor tomado de la columna actual.

En este caso tengo una columna Dates.Month (que es un número entero en el formato YYYYMM) y una nueva columna calculada Dates.MonthBefore (que es un número entero en el formato YYYYMM, mostrando el código del mes anterior). Así que en una fila, es el Dates.Month es 202001, luego Dates.MonthBefore es 201912. Este bit funciona bien.

¿Cómo creo una nueva columna que extrae el valor de las filas, buscando Dates.Month en las filas buscadas que sean iguales a Dates.MonthBefore en la fila actual? El problema con Filter es que mira solo los valores codificados.

Quiero algo como:

OpeningBalance : calculate(SUM(TableTable[Dates.MonthBefore][thisrow])


Estoy seguro de que debe haber una respuesta fácil a esto!

Salud

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hola @JohnYeldham ,

Prueba esto:

Column =
VAR LastMonth = 'Table'[Dates.BeforeMonth]
RETURN
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Dates.Month] = LastMonth )
    )

O

Column =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Dates.Month] = EARLIER ( 'Table'[Dates.BeforeMonth] )
    )
)

LAST.PNG

Saludos

Icey

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

View solution in original post

4 REPLIES 4
Icey
Community Support
Community Support

Hola @JohnYeldham ,

Prueba esto:

Column =
VAR LastMonth = 'Table'[Dates.BeforeMonth]
RETURN
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Dates.Month] = LastMonth )
    )

O

Column =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Dates.Month] = EARLIER ( 'Table'[Dates.BeforeMonth] )
    )
)

LAST.PNG

Saludos

Icey

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

Gracias, usé el primero. Era muy similar a mi código, pero con el añadido "ALL('Table')" y un FILTER explícito (en lugar de implícito en el CALCULATE) - y eso parece haber hecho el truco.

amitchandak
Super User
Super User

@JohnYeldham, en caso de que necesite una medida, puede convertir esta en fecha

date (left([month year],4),right([month year],2),1)

Entonces puedes usar la inteligencia del tiempo

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])

Power BI — MTD
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e

también se utiliza una nueva columna

sumx(filter(table,& eomonth([Date],0) á eomonth(arlier([Date]),-1)),[Amount])

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, únase a ella con la columna de fecha de su/s 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/

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.

también referir : https://youtu.be/yPQ9UV37LOU

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

Este es probablemente el camino a largo plazo, pero @Iceysolución es más rápida por ahora. Sin duda revisaré su sugerencia en el próximo cálculo.

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