Conventional Mortgage Rates Calculator

Rental Property Cash-on-Cash Return Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; } .calculator-container { background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } @media (max-width: 600px) { .calc-grid { grid-template-columns: 1fr; } } .input-group { margin-bottom: 15px; } .input-group label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.9em; } .input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .calc-btn { background-color: #2c7a7b; color: white; border: none; padding: 12px 20px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; width: 100%; margin-top: 10px; transition: background-color 0.2s; } .calc-btn:hover { background-color: #235c5d; } .results-section { margin-top: 25px; border-top: 2px solid #eee; padding-top: 20px; display: none; } .result-row { display: flex; justify-content: space-between; margin-bottom: 10px; padding: 10px; background: #fff; border-radius: 4px; } .result-row.highlight { background-color: #e6fffa; border: 1px solid #b2f5ea; font-weight: bold; font-size: 1.1em; color: #234e52; } .article-content h2 { color: #2c3e50; border-bottom: 2px solid #2c7a7b; padding-bottom: 10px; margin-top: 40px; } .article-content h3 { color: #34495e; margin-top: 25px; } .article-content p { margin-bottom: 15px; } .article-content ul { margin-bottom: 20px; } .article-content li { margin-bottom: 8px; } .error-msg { color: #e53e3e; font-size: 0.9em; display: none; margin-top: 5px; }

Rental Property Cash-on-Cash Calculator

Calculate your annual return on actual cash invested.

Purchase Info

Financing

Monthly Income

Monthly Expenses

Please enter valid numeric values. Purchase price must be greater than 0.

Financial Analysis

Cash-on-Cash Return: 0.00%
Monthly Cash Flow: $0.00
Annual Cash Flow: $0.00
Total Cash Invested: $0.00
Monthly Mortgage Payment (P&I): $0.00

Understanding Cash-on-Cash Return for Rental Properties

Real estate investors use various metrics to evaluate the profitability of a rental property. While Cap Rate measures the property's potential regardless of financing, the Cash-on-Cash (CoC) Return is arguably the most practical metric for investors using leverage (mortgages).

This calculator helps you determine exactly how hard your actual invested dollars are working for you. Unlike ROI, which might account for loan paydown and appreciation, CoC focuses strictly on the pre-tax cash flow relative to the cash invested.

How to Calculate Cash-on-Cash Return

The formula for Cash-on-Cash return is relatively straightforward:

Cash-on-Cash Return = (Annual Pre-Tax Cash Flow / Total Cash Invested) × 100%

Key Components of the Calculation

  • Annual Cash Flow: This is your Gross Scheduled Income minus all Operating Expenses (taxes, insurance, maintenance, vacancy, management) and minus your Annual Debt Service (mortgage payments).
  • Total Cash Invested: This includes your Down Payment, Closing Costs, and any immediate Repair or Rehab costs required to get the property rented. It does not include the loan amount.

What is a Good Cash-on-Cash Return?

While target returns vary by market and investor strategy, here are some general benchmarks:

  • 8% – 12%: Generally considered a solid return for most residential rental markets. This outperforms the historical average of the stock market while providing the added benefits of real estate ownership (appreciation, tax depreciation).
  • 15%+: Considered an excellent return, often found in lower-cost markets or properties requiring significant "sweat equity" (rehab work).
  • Below 5%: Might be acceptable in high-appreciation markets (like coastal cities) where the primary goal is long-term equity growth rather than immediate cash flow.

Why Cash Flow Can Be Negative

If your calculator result shows a negative percentage, it means the property costs more to hold than it generates in rent. This typically happens when:

  1. The purchase price is too high relative to the rent (low rent-to-price ratio).
  2. The down payment is too low, resulting in a mortgage payment that swallows the rental income.
  3. Operating expenses (like HOA fees or taxes) are unexpectedly high.
function calculateCoC() { // 1. Get Input Values var price = parseFloat(document.getElementById('purchasePrice').value); var closing = parseFloat(document.getElementById('closingCosts').value) || 0; var rehab = parseFloat(document.getElementById('rehabCosts').value) || 0; var downPercent = parseFloat(document.getElementById('downPaymentPercent').value) || 0; var interestRate = parseFloat(document.getElementById('interestRate').value) || 0; var loanYears = parseFloat(document.getElementById('loanTerm').value) || 30; var monthlyRent = parseFloat(document.getElementById('monthlyRent').value) || 0; var otherIncome = parseFloat(document.getElementById('otherIncome').value) || 0; var propTax = parseFloat(document.getElementById('propertyTax').value) || 0; var insurance = parseFloat(document.getElementById('insurance').value) || 0; var maintenance = parseFloat(document.getElementById('maintenance').value) || 0; // Validation var errorBox = document.getElementById('errorBox'); if (isNaN(price) || price 0 && loanAmount > 0) { // Standard Amortization Formula: M = P [ i(1 + i)^n ] / [ (1 + i)^n – 1 ] monthlyMortgage = loanAmount * (monthlyRate * Math.pow(1 + monthlyRate, numberOfPayments)) / (Math.pow(1 + monthlyRate, numberOfPayments) – 1); } else if (loanAmount > 0) { // 0% interest case monthlyMortgage = loanAmount / numberOfPayments; } // 4. Calculate Cash Flow var totalMonthlyIncome = monthlyRent + otherIncome; var totalMonthlyExpenses = propTax + insurance + maintenance + monthlyMortgage; var monthlyCashFlow = totalMonthlyIncome – totalMonthlyExpenses; var annualCashFlow = monthlyCashFlow * 12; // 5. Calculate Cash on Cash Return var cocReturn = 0; if (totalCashInvested > 0) { cocReturn = (annualCashFlow / totalCashInvested) * 100; } // 6. Update Display document.getElementById('cocResult').innerHTML = cocReturn.toFixed(2) + "%"; document.getElementById('cocResult').style.color = cocReturn >= 0 ? "#2c7a7b" : "#e53e3e"; document.getElementById('monthlyCashFlow').innerHTML = formatCurrency(monthlyCashFlow); document.getElementById('monthlyCashFlow').style.color = monthlyCashFlow >= 0 ? "#333" : "#e53e3e"; document.getElementById('annualCashFlow').innerHTML = formatCurrency(annualCashFlow); document.getElementById('annualCashFlow').style.color = annualCashFlow >= 0 ? "#333" : "#e53e3e"; document.getElementById('totalCashInvested').innerHTML = formatCurrency(totalCashInvested); document.getElementById('monthlyMortgage').innerHTML = formatCurrency(monthlyMortgage); // Show results document.getElementById('resultContainer').style.display = 'block'; } function formatCurrency(num) { return "$" + num.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); }

Leave a Comment