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
itsmebvk
Continued Contributor
Continued Contributor

Cómo mostrar YTD y LYTD en el gráfico de líneas sin usar la tabla de fechas

Hola Amigos,

Tengo un requisito, he intentado todas las formas posibles, pero no pude obtener la salida deseada.

Estoy tratando de crear el cálculo YTD y LYTD basado en el año que he cortado en la segmentación. El problema es que no tengo fechas continuas y no quiero crear una tabla de citas de cusom también. Quiero mostrar estos YTD y LYTD en línea visual, y estos valores YTD y LYTD deben cambiar automáticamente en función del año que seleccioné en la segmentación de datos.

¿Podemos crear columnas YTD y LYTD usando las columnas Período fiscal y Mes fiscal (lo tengo en el conjunto de datos) en lugar de solo fecha?

Gracias de antemano por sus entradas.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@itsmebvamsi , Probar como

YTD ?
var _max á maxx(allselected(Table),Table[Date])
var _min - date(year(_min),1,1) //Change this based on you FY

devolución
calculate(sum(Tbale[value]),filter(all(Table[Date]), Table[Date] >-_min && Table[Fecha] <-_max))


LYTD ?
var _max1 á maxx(allselected(Table),Table[Date])
var _max á date(year(_max1)-1,month(_max1),day(_max1))
var _min - date(year(_min),1,1) //Change this based on you FY

devolución
calculate(sum(Tbale[value]),filter(all(Table[Date]), Table[Date] >-_min && Table[Fecha] <-_max))

Pero es mejor tener tabla de citas. Esa es la forma sugerida. No estoy seguro de por qué quieres evitar que .

Power BI — YTD
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a

Calendario

https://community.powerbi.com/t5/Community-Blog/Creating-Financial-Calendar-Decoding-Date-and-Calend...

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

View solution in original post

3 REPLIES 3
v-shex-msft
Community Support
Community Support

Hola @itsmebvamsi,

Sí, es posible. Puede extraer el valor de fecha actual del contenido de la fila actual y utilizar las funciones de fecha para procesar y definir el rango de filtros en las condiciones de fórmula DAX.

CYTD Measure=
VAR currDate =
    MAX ( table[Date] )
RETURN
    CALCULATE (
        SUM ( table[amount] ),
        FILTER (
            ALLSELECTED ( table ),
            YEAR ( [Date] ) = YEAR ( currDate )
                && [Date] <= currDate
        )
    )

LYTD Measure=
VAR currDate =
    MAX ( table[Date] )
RETURN
    CALCULATE (
        SUM ( table[amount] ),
        FILTER (
            ALLSELECTED ( table ),
            YEAR ( [Date] ) = YEAR ( currDate )-1
                && [Date] <= currDate
        )
    )

Si todavía se confunde acerca de la fórmula de codificación. Proporcione algunos datos ficticios y los resultados esperados con la estructura de la tabla sin procesar para ayudarnos a aclarar sus necesidades y probar la fórmula de codificación en él.

Cómo obtener respuestas a su pregunta rápidamente

saludos

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@itsmebvamsi , Probar como

YTD ?
var _max á maxx(allselected(Table),Table[Date])
var _min - date(year(_min),1,1) //Change this based on you FY

devolución
calculate(sum(Tbale[value]),filter(all(Table[Date]), Table[Date] >-_min && Table[Fecha] <-_max))


LYTD ?
var _max1 á maxx(allselected(Table),Table[Date])
var _max á date(year(_max1)-1,month(_max1),day(_max1))
var _min - date(year(_min),1,1) //Change this based on you FY

devolución
calculate(sum(Tbale[value]),filter(all(Table[Date]), Table[Date] >-_min && Table[Fecha] <-_max))

Pero es mejor tener tabla de citas. Esa es la forma sugerida. No estoy seguro de por qué quieres evitar que .

Power BI — YTD
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a

Calendario

https://community.powerbi.com/t5/Community-Blog/Creating-Financial-Calendar-Decoding-Date-and-Calend...

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
lbendlin
Super User
Super User

No estoy seguro de por qué quieres torturarte así, pero sí, eso es posible.

Tener dos medidas que calculan si un valor de datos está en su año respectivo y devuelven en blanco si no. Agregue ambas medidas al valor bueno. A continuación, cree una tabla calculada con los valores del eje x (Período fiscal, Mes fiscal) con la parte del año eliminada.

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