Cumulative total re-starting by year?

macfuller

Active Member
Joined
Apr 30, 2014
Messages
319
Office Version
  1. 365
Platform
  1. Windows
I have a standard cumulative measure using a date table AP_Calendar against vouchers. The [Voucher Charges Total Paid Amt] is a simple SUM of vouchers we have paid.
VBA Code:
Cumulative Paid Amt:=CALCULATE (
    [Voucher Charges Total Paid Amt],
    FILTER (
        ALLSELECTED ( 'AP_Calendar'[Date] ),
        'AP_Calendar'[Date] <= MAX ( 'AP_Calendar'[Date] )
    )
)

However, I would like to compare 2019 to 2020 cumulative amounts by simply adding the AP_Calendar[Year] field to my pivot table column to get

2019 Sum2019 Cumulative Sum2020 Sum2020 Cumulative Sum
Jan
1​
1​
2​
2​
Feb
2​
3​
1​
3​
Mar
1​
4​
2​
5​
and so on.

I've tried various combinations of KEEPFILTERS or specifically calling out the year, such as:
VBA Code:
Cumulative Paid Amt:=CALCULATE (
    [Voucher Charges Total Paid Amt],
    FILTER (
        ALLSELECTED ( 'AP_Calendar'[Date] ),
        'AP_Calendar'[Date] <= MAX ( 'AP_Calendar'[Date] )
        &&     year ( MAX( Vouchers[Payment Date] ) ) = year ( AP_Calendar[Date] )
    )
)
but it's not giving me what I expect. I appreciate a correction!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.

Forum statistics

Threads
1,215,039
Messages
6,122,802
Members
449,095
Latest member
m_smith_solihull

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top