Forum Discussion
Syndicate_Admin
4 years agoAdministrator
Accumulated sum goes wrong
Hello! I have a "Product Sale" table with a "Total Boxes" column I try to add the accumulated "Total Boxes" per month, I tried with the following function: but it goes wrong. ACCUMULATED = CAL...
- 4 years ago
I achieved this with:
ACCUMULATED = TOTALYTD([Boxes Sold],Calendar[Date])
jgeddes
4 years agoSuper User
Are you expecting the result to look like...
Syndicate_Admin
4 years agoAdministrator
How did you do it?
- jgeddes4 years agoSuper User
I used
CALCULATE(
SUM(VentaProductos[Cajas Vendidas]),
FILTER(ALL(VentaProductos), VentaProductos[Fecha de aceptacion] <= MAX(VentaProductos[Fecha de aceptacion]))
)