Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.