Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hola, vengo teniendo un problema les comento.
Tengo esta tabla que es un forecast, entonces yo quisiera tener una medida que me sume el acumulado mes a mes de la columna cantidad pero que detenga la suma en el mes anterior cerrado (es decir si hoy es 5 de mayo, me sume hasta el 30 de abril y asi sea 15 de mayo me siga sumando hasta el 30 de abril y recien cuando sea junio, me sume hasta el 31 de mayo), no se si se a posible.
Gracias
Basándome en su descripción, he creado una muestra simple:
Por favor, intente:
Cumulative sum =
var _a = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Date]<=EOMONTH(MAX('Table'[Date]),0)))
var _b = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Date]<=EOMONTH(MAX('Table'[Date]),-1)))
return IF(MONTH(MAX('Table'[Date]))=MONTH(TODAY()),_b,_a)
Resultado final:
Saludos
Jianbo Li
Si esta publicación ayuda, considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.