Rent Increase Calculator Formula
Understand the math behind the rent increase calculator. Each variable explained with a worked example.
Formulas Used
New Monthly Rent
new_monthly_rent = new_rentMonthly Increase Amount
monthly_increase = dollar_increaseAnnual Revenue Increase
annual_increase = dollar_increase * 12Rent After Projection Period
future_rent = rent_after_yearsTotal Growth Over Period
total_growth_pct = current_rent > 0 ? ((rent_after_years - current_rent) / current_rent) * 100 : 0Variables
| Variable | Description | Default |
|---|---|---|
current_rent | Current Monthly Rent(USD) | 1800 |
increase_pct | Annual Increase Rate(%) | 4 |
projection_years | Years to Project | 5 |
dollar_increase | Derived value= current_rent * increase_pct / 100 | calculated |
new_rent | Derived value= current_rent + dollar_increase | calculated |
rent_after_years | Derived value= current_rent * pow(1 + increase_pct / 100, projection_years) | calculated |
How It Works
Calculating Rent Increases
Rent increases help landlords keep pace with inflation, rising property taxes, and increasing maintenance costs. Most increases are applied as a percentage of the current rent.
Formula
New Rent = Current Rent x (1 + Increase Percentage / 100)
For multi-year projections: Future Rent = Current Rent x (1 + Annual Rate)^Years
Determining the Right Increase
Timing Considerations
Worked Example
Current rent is $1,800/month with a planned 4% annual increase, projected over 5 years.
current_rent = 1800increase_pct = 4projection_years = 5
- 01Dollar increase: $1,800 x 4% = $72
- 02New monthly rent: $1,800 + $72 = $1,872
- 03Annual revenue increase: $72 x 12 = $864
- 04Rent after 5 years: $1,800 x (1.04)^5 = $2,190
- 05Total growth: ($2,190 - $1,800) / $1,800 = 21.7%
Ready to run the numbers?
Open Rent Increase Calculator