Please be kind... i'm a rookie user. I'm trying to create a space planning and capital estimating tool that has several inputs. The one I'm struggling with is calculating NPV for a variety of scenarios. More specifically, I'd like a user to be able to enter a particular number of years on a potential space lease (round numbers from 1 to 15), Year 1 rent rate, annual rate increase as a percentage, and discount rate. I have the following formula for a 10 year lease, but it just seems like there is an easier way and then I don't want to have to build an IF function for all the different years. Perhaps I'm just lazy, but if there isn't an easier way, I'll get to coding.
=NPV(dr,usf*(1+lf)*br,usf*(1+lf)*(br*(1+ari)^1),usf*(1+lf)*(br*(1+ari)^2),usf*(1+lf)*(br*(1+ari)^3),usf*(1+lf)*(br*(1+ari)^4),usf*(1+lf)*(br*(1+ari)^5),usf*(1+lf)*(br*(1+ari)^6),usf*(1+lf)*(br*(1+ari)^7),usf*(1+lf)*(br*(1+ari)^8),usf*(1+lf)*(br*(1+ari)^9))
=NPV(dr,usf*(1+lf)*br,usf*(1+lf)*(br*(1+ari)^1),usf*(1+lf)*(br*(1+ari)^2),usf*(1+lf)*(br*(1+ari)^3),usf*(1+lf)*(br*(1+ari)^4),usf*(1+lf)*(br*(1+ari)^5),usf*(1+lf)*(br*(1+ari)^6),usf*(1+lf)*(br*(1+ari)^7),usf*(1+lf)*(br*(1+ari)^8),usf*(1+lf)*(br*(1+ari)^9))