Calculating Future Value (FV)
As the first step in the calculations, we need to calculate the nominal or future value of all cash flows. Remember that we have multiple parts to calculate: initial investment, recurring cash flows, irregular cash flows, and residual value. We will start with the easy part.
Initial investment and residual value
In our model, both the initial investment and residual value are attributes of a property. We could simply total up the values in the corresponding columns in the Property
table, but for our analysis, the values should be mapped onto the correct year: the initial investment in year 0, and the residual value in the last year of the property's life cycle.
To help with mapping the initial investment to year 0, an additional column, Initial period
, is in the Property
table. This column always contains the value 0. The initial investment is calculated with the DAX measure below:
FV Initial Investment =
CALCULATE(
SUM(&apos...