rent escaltion

shamsu203

Board Regular
Joined
Jun 12, 2014
Messages
70
Office Version
  1. 365
Platform
  1. Windows
Hi
I am trying to put together a worksheet to track rent increase . the lease can be for any no of years . The escalation may be 12 ,36, 48 months interval.at say 10%. eg if the rent is $1000 start of lease date is 1-1-21, increase % 10%, increase interval is 36 months ,. then on 1-1-24 (36months from the lease date,) the worksheet should show rent increase date and new rent which would be 1100, then on 1-1-27 the new rent increase date will be shown as 1-1-27 and rent as 1210 so on until expiry of the lease agreement. ANy help will be appreciated
Regards
Shamsu
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Here is a quick version I whipped up that can be expanded upon:

Book2
ABCDEFG
1Rent Increase
2Increase every 3 years
310%
4Lease Date12 month36 month48 month60 month72 month
51/1/20211/1/20241/1/2027
6$1,000.00$1,100.00$1,210.00
7
Sheet1
Cell Formulas
RangeFormula
C5C5=DATE(YEAR(A5) + 3, MONTH(A5), DAY(A5))
C6C6= A6 + A6 * C3
F5F5=DATE(YEAR(A5) + 6, MONTH(A5), DAY(A5))
F6F6= C6 + C6 * C3
 
Upvote 0
Here is a quick version I whipped up that can be expanded upon:

Book2
ABCDEFG
1Rent Increase
2Increase every 3 years
310%
4Lease Date12 month36 month48 month60 month72 month
51/1/20211/1/20241/1/2027
6$1,000.00$1,100.00$1,210.00
7
Sheet1
Cell Formulas
RangeFormula
C5C5=DATE(YEAR(A5) + 3, MONTH(A5), DAY(A5))
C6C6= A6 + A6 * C3
F5F5=DATE(YEAR(A5) + 6, MONTH(A5), DAY(A5))
F6F6= C6 + C6 * C3

Here is a quick version I whipped up that can be expanded upon:

Book2
ABCDEFG
1Rent Increase
2Increase every 3 years
310%
4Lease Date12 month36 month48 month60 month72 month
51/1/20211/1/20241/1/2027
6$1,000.00$1,100.00$1,210.00
7
Sheet1
Cell Formulas
RangeFormula
C5C5=DATE(YEAR(A5) + 3, MONTH(A5), DAY(A5))
C6C6= A6 + A6 * C3
F5F5=DATE(YEAR(A5) + 6, MONTH(A5), DAY(A5))
F6F6= C6 + C6 * C3
hi
Tks for your help it works fine. my concern is that as the period increases the worksheet would be lagre. I want to know if the data in the c column could reflect the new date and amount that is when it is 72 months then c 4 should show 72 months and increase as the months increase and cell c5 and c6 will also be reflecting the new date and amount.
Regrds
Shamsu
 
Upvote 0

Forum statistics

Threads
1,214,798
Messages
6,121,636
Members
449,043
Latest member
farhansadik

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top