Forum Discussion
Anonymous
3 years agoNot applicable
Compounding Interest Table
Hello, I would like to replicate this table in Excel below, but using Power BI. and there is interest rate in cell C16. In Excel, for Cell D2, the value would be: D2 =C2*(1+$...
- 3 years ago
Ashish_Mathur
Super User
3 years agolbendlin
Super User
3 years agoAshish_Mathur great approach. Here is a slightly simpler version, but the idea is the same.
FV2 =
var y = max(Data[Date])
var a = SUMMARIZE(ALLSELECTED(Data),Data[Date],"comp",sum(Data[Yearly savings]),"pow",year(y)-year([Date])+1)
return sumx(filter(a,[pow]>0),[comp]*1.1^[pow])
- Ashish_Mathur3 years ago
Super User
Thank you lbendlin for sharing your knowledge. It indeed is a much shorter formula than mine.