How to Calculate the Cap Rate for a Rental Property

Rental Property Cap Rate Calculator

Determine the potential unleveraged return on your investment property.

Total rental income received in a year before any expenses.
Taxes, insurance, maintenance, management fees, utilities. Do NOT include mortgage payments.
The purchase price or current appraised value of the property.
function calculateRentalCapRate() { // 1. Retrieve input values var grossIncomeInput = document.getElementById('grossIncome').value; var operatingExpensesInput = document.getElementById('operatingExpenses').value; var propertyValueInput = document.getElementById('propertyValue').value; var resultsDiv = document.getElementById('calculationResults'); var errorDiv = document.getElementById('errorContainer'); var noiOutput = document.getElementById('noiResult'); var capRateOutput = document.getElementById('capRateResult'); // 2. Parse values to numbers var grossIncome = parseFloat(grossIncomeInput); var operatingExpenses = parseFloat(operatingExpensesInput); var propertyValue = parseFloat(propertyValueInput); // 3. Validation: Ensure inputs are valid numbers and property value is positive if (isNaN(grossIncome) || isNaN(operatingExpenses) || isNaN(propertyValue) || propertyValueInput.trim() === "") { errorDiv.innerHTML = "Please enter valid numeric values for all fields."; resultsDiv.style.display = 'none'; return; } if (propertyValue <= 0) { errorDiv.innerHTML = "Property Market Value must be greater than zero."; resultsDiv.style.display = 'none'; return; } // 4. Perform Calculations // Net Operating Income (NOI) = Gross Income – Operating Expenses var noi = grossIncome – operatingExpenses; // Cap Rate = (NOI / Property Value) * 100 var capRate = (noi / propertyValue) * 100; // 5. Format output for display (Currency and Percentage) var currencyFormatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0, }); // 6. Display Results errorDiv.innerHTML = ""; // Clear errors resultsDiv.style.display = 'block'; noiOutput.innerHTML = "Net Operating Income (NOI): " + currencyFormatter.format(noi) + " / year"; capRateOutput.innerHTML = "Capitalization Rate: " + capRate.toFixed(2) + "%"; }

Understanding and Calculating Cap Rate for Rental Properties

For real estate investors, quickly evaluating the potential profitability of a rental property is crucial. The Capitalization Rate, or "Cap Rate," is one of the most fundamental metrics used for this purpose. It provides an estimate of the investor's potential return on investment over a one-year period, assuming the property was bought entirely with cash.

This guide and the calculator above will help you understand how to calculate the cap rate for a rental property and interpret what the result means for your investment strategy.

What is Cap Rate?

The Cap Rate is a ratio that indicates the rate of return that is expected to be generated on a real estate investment property. It is essentially the yield of the property.

Crucially, the cap rate is an unleveraged metric. This means it calculates the return without considering mortgage financing. It assesses the profitability of the property itself, distinct from how the investor chooses to finance the purchase. This allows investors to compare different properties on an apples-to-apples basis, regardless of their financing terms.

The Cap Rate Formula

The formula for calculating the cap rate is relatively straightforward, but requires accurate inputs:

Cap Rate = (Net Operating Income / Current Market Value) × 100

1. Net Operating Income (NOI)

The most critical part of the calculation is determining the Net Operating Income accurately. NOI is the total income the property generates after all necessary operating expenses are subtracted, but before debt service (mortgage) and income taxes.

NOI = Gross Annual Rental Income – Total Annual Operating Expenses

  • Gross Annual Rental Income: This is the total amount of rent collected in a year if the property is fully occupied, plus any other income sources like vending machines or parking fees.
  • Operating Expenses INCLUDE: Property taxes, landlord insurance, maintenance and repairs, property management fees, utilities paid by the landlord, landscaping, and allowances for vacancy.
  • Operating Expenses EXCLUDE: Your mortgage principal and interest payments, capital expenditures (major renovations like a new roof), and income taxes.

2. Current Market Value

This is simply the price you are planning to pay for the property, or its current appraised value if you already own it.

Realistic Example: Calculating Cap Rate

Let's imagine you are analyzing a small duplex listed for sale at $450,000. You need to determine its cap rate.

  1. Determine Gross Income: Each unit rents for $1,600 per month.
    $1,600 x 2 units = $3,200/month.
    $3,200 x 12 months = $38,400 Gross Annual Income.
  2. Estimate Operating Expenses: You estimate taxes ($5,000), insurance ($1,500), maintenance reserves ($3,000), management fees ($3,840), and vacancy reserves ($1,920) total $15,260 per year.
  3. Calculate NOI:
    $38,400 (Gross Income) – $15,260 (Expenses) = $23,140 NOI.
  4. Calculate Cap Rate:
    ($23,140 NOI / $450,000 Value) = 0.0514
    0.0514 x 100 = 5.14% Cap Rate.

By entering these figures into the calculator above ($38,400 income, $15,260 expenses, $450,000 value), you will arrive at this 5.14% result.

Interpreting the Result

Generally, a higher cap rate implies a better potential return on investment, but it often correlates with higher risk (e.g., properties in less desirable neighborhoods or requiring more maintenance often have higher cap rates). A lower cap rate usually indicates lower risk and higher property value, often found in prime locations.

What is considered a "good" cap rate varies significantly by market location and asset type, but many residential investors look for cap rates between 4% and 10%.

Leave a Comment