I require some assistance with developing a DAX measure for the following scenario:
I want to do something similar to Cummulative totals but the totals are reducing. So as you can see in the image below:
I have a certain cost of Production/sales (Say $100)
Certain projects get implemented and these projects realize a certain % saving (Projects implemented yearly - only looking at yearly savings - at multiple sites and currently there are over a hundred projects)
This means that the cost of production after Project 1 (P1) (10% saving) was implemented is now $ 90
Project 2 (P2) now realize a saving of 5%. This saving however is now on 90 (100 - 10%) and not on the 100
So the cost of production is now $ 85.50 after P2 gets implemented (90 * 95% )
How do I calculate the Cost after saving per project dynamically? Do I calculate this similar to
Cumulative totals but subtracting this saving every time?