• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Assistance with Growth Increments

Gregg Wolin

Member
The formula below effectively takes a "starting" rental rate (C5) and increases it at a specific rate (C7) one time annually on a specific month (C6).
Code:
=IF(MONTH(D$3)<>$C$6,C5,C5*(1+$C$7))

79585

I tried tweaking the formula to allow for the addition of a start (C14) and end date (C18) during which the increases take place but the code below doesn't do it.
Code:
=IF(AND(D12>$C$14,D12<=$C$18),IF(MONTH(D$12)<>$C$16,C15,C15*(1+$C$17)),0)

79586
 

Attachments

  • chandoo_leasebump.xlsx
    25 KB · Views: 4
D13:
Code:
=IF(AND(D$12>$C$14,D$12<=$C$18,MONTH(D$12)=$C$16),C15*(1+$C$17),C15)
E13 copied across:
Code:
=IF(AND(E$12>$C$14,E$12<=$C$18,MONTH(E$12)=$C$16),D13*(1+$C$17),D13)

or

D13:
Code:
=C15*(1+IF(AND(D$12>$C$14,D$12<=$C$18,MONTH(D$12)=$C$16),$C$17,0))
E13 copied across:
Code:
=D13*(1+IF(AND(E$12>$C$14,E$12<=$C$18,MONTH(E$12)=$C$16),$C$17,0))

or

D13:
Code:
=C15*(1+AND(D$12>$C$14,D$12<=$C$18,MONTH(D$12)=$C$16)*$C$17)
E13 copied across:
Code:
=D13*(1+AND(E$12>$C$14,E$12<=$C$18,MONTH(E$12)=$C$16)*$C$17)
 
D13:
Code:
=IF(AND(D$12>$C$14,D$12<=$C$18,MONTH(D$12)=$C$16),C15*(1+$C$17),C15)
E13 copied across:
Code:
=IF(AND(E$12>$C$14,E$12<=$C$18,MONTH(E$12)=$C$16),D13*(1+$C$17),D13)

or

D13:
Code:
=C15*(1+IF(AND(D$12>$C$14,D$12<=$C$18,MONTH(D$12)=$C$16),$C$17,0))
E13 copied across:
Code:
=D13*(1+IF(AND(E$12>$C$14,E$12<=$C$18,MONTH(E$12)=$C$16),$C$17,0))

or

D13:
Code:
=C15*(1+AND(D$12>$C$14,D$12<=$C$18,MONTH(D$12)=$C$16)*$C$17)
E13 copied across:
Code:
=D13*(1+AND(E$12>$C$14,E$12<=$C$18,MONTH(E$12)=$C$16)*$C$17)
Thank You!!!!
 
Back
Top