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
thorpyuk
Helper III
Helper III

Calcular el año financiero/semana hace exactamente 52 semanas

Hola a todos

He creado una medida para tirar del año financiero hace exactamente 52 semanas, pero aunque se evalúa bien, sólo me muestra este año financiero no dura. La razón de esto, es porque nuestro ejercicio se está extendiendo a 66 semanas, por lo que las comparaciones semana a semana son inútiles! Voy a editar este código para mostrar la semanaNo exactamente 52 semanas atrás también:

TestYear = CALCULATE( MAX('db_v_BaseCalendar_TYLY'[FinYear] ) , FILTER('db_v_BaseCalendar_TYLY', MAX('db_v_BaseCalendar_TYLY'[TransDate]) - (7 * 52))
)

Por favor, ¿alguien puede ver lo que me estoy perdiendo? ¡Gracias a todos!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@thorpyuk, no muy claro. necesitan ejemplo.

Vea estos ejemplos con la tabla de fechas y la inteligencia de tiempo

Medida

52 semanas detrás de Ventas - CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-364,Day))

Semana necesita semana Rango para el análisis

nueva columna

Rango de la semana - RANKX(all('Date'),'Date'[Week Start date],,ASC,Dense)

Medida
Esta semana: CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]-max('Date'[Week Rank])))
Last Week ? CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]-max('Date'[Week Rank])-1))
Last year WeekTM CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]-(max('Date'[Week Rank]) -52)))

Consulte: https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...

Cualquier semana de día de la semana - Comience desde cualquier día de la semana
https://community.powerbi.com/t5/Community-Blog/Any-Weekday-Week-Decoding-Date-and-Calendar-2-5-Powe...

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

2 REPLIES 2
amitchandak
Super User
Super User

@thorpyuk, no muy claro. necesitan ejemplo.

Vea estos ejemplos con la tabla de fechas y la inteligencia de tiempo

Medida

52 semanas detrás de Ventas - CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-364,Day))

Semana necesita semana Rango para el análisis

nueva columna

Rango de la semana - RANKX(all('Date'),'Date'[Week Start date],,ASC,Dense)

Medida
Esta semana: CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]-max('Date'[Week Rank])))
Last Week ? CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]-max('Date'[Week Rank])-1))
Last year WeekTM CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]-(max('Date'[Week Rank]) -52)))

Consulte: https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...

Cualquier semana de día de la semana - Comience desde cualquier día de la semana
https://community.powerbi.com/t5/Community-Blog/Any-Weekday-Week-Decoding-Date-and-Calendar-2-5-Powe...

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

Gracias amitchandak, el primero (medida) fue lo que estaba después (con alguna modificación) - esto es lo que hice:

CALCULATE( MAX('db_v_BaseCalendar_TYLY'[FinYear] ) , DATEADD('db_v_BaseCalendar_TYLY'[TransDate] , -(52 * 7) , DAY ))

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