Forum Discussion
marcmen
4 years agoHelper I
Amortization Balance
Hi All, I am looking for some help to create either a new column or a measure that will show a running balance based on the amortization script below. Amortization HW = SUMMARIZE(filter(CROSSJO...
- Anonymous4 years ago
Hi marcmen ,
You could create a measure to get the cumulative value for [HW CapEx].
cumulativ_ = CALCULATE(SUM(AOPF[HW CapEx]),FILTER(ALLSELECTED(AOPF),AOPF[Date]<=MAX(AOPF[Date])))Then use the starting balance minus [cumulativ_].
Best Regards,
Jay
Anonymous
4 years agoNot applicable
Hi marcmen ,
You could create a measure to get the cumulative value for [HW CapEx].
cumulativ_ = CALCULATE(SUM(AOPF[HW CapEx]),FILTER(ALLSELECTED(AOPF),AOPF[Date]<=MAX(AOPF[Date])))
Then use the starting balance minus [cumulativ_].
Best Regards,
Jay
- marcmen4 years agoHelper I
Anonymous - that worked - thank you