How to Calculate Going Out Cap Rate

.calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 8px; background-color: #f9f9f9; color: #333; } .calc-header { text-align: center; margin-bottom: 30px; } .calc-group { margin-bottom: 20px; } .calc-label { display: block; font-weight: 600; margin-bottom: 8px; } .calc-input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .calc-btn { width: 100%; padding: 15px; background-color: #0056b3; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #004494; } .calc-result { margin-top: 25px; padding: 20px; background-color: #e7f3ff; border-radius: 4px; text-align: center; } .calc-result-val { font-size: 28px; font-weight: bold; color: #0056b3; display: block; } .calc-content { margin-top: 40px; line-height: 1.6; } .calc-content h2 { color: #222; border-bottom: 2px solid #0056b3; padding-bottom: 10px; } .calc-content h3 { color: #444; margin-top: 25px; } .calc-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .calc-table th, .calc-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .calc-table th { background-color: #f2f2f2; }

Going Out Cap Rate Calculator

Estimate your exit capitalization rate based on projected sale price and net operating income.

Calculated Going Out Cap Rate: 0.00%

Understanding the Going Out Cap Rate

The Going Out Cap Rate, also known as the Exit Cap Rate or Terminal Cap Rate, is a critical metric used by real estate investors to estimate the resale value of a property at the end of a specific holding period. While the "Going In" cap rate tells you the yield at purchase, the "Going Out" rate helps you forecast your eventual return on investment (ROI) and internal rate of return (IRR).

The Formula for Going Out Cap Rate

The calculation is straightforward but relies heavily on accurate projections of future income and market conditions. The formula is:

Going Out Cap Rate = (Year-End Net Operating Income / Projected Sale Price) × 100

Why It Matters in Real Estate

In most professional underwriting, the exit cap rate is assumed to be higher than the entry cap rate (a "cap rate expansion"). This is because a building is typically older at the time of sale, and investors want to build in a margin of safety for potential market shifts. If your going out cap rate is lower than your entry cap rate, you are banking on "cap rate compression," which is a riskier strategy reliant on market appreciation.

Practical Example

Imagine you purchased a multifamily complex. After a 5-year hold, your financial projections show:

  • Projected Year 5 NOI: $150,000
  • Expected Sale Price: $2,500,000

Calculation: 150,000 / 2,500,000 = 0.06 or 6.00%. This 6% is your Going Out Cap Rate.

Key Factors Influencing Exit Cap Rates

Factor Impact on Rate
Interest Rates Rising rates generally push exit cap rates higher.
Property Age Older assets typically trade at higher cap rates due to higher maintenance risk.
Market Growth High-demand areas may see lower exit cap rates (compression).
Lease Terms Properties with long-term, stable tenants often command lower cap rates.

Pro-Tip: The 10-20 Basis Point Rule

A common conservative underwriting practice is to add 10 to 20 basis points (0.10% to 0.20%) to the entry cap rate for every year of the holding period to arrive at a realistic Going Out Cap Rate.

function calculateExitCap() { var noi = document.getElementById("exitNoi").value; var price = document.getElementById("salePrice").value; var display = document.getElementById("exitCapDisplay"); var resultArea = document.getElementById("resultArea"); var interpretation = document.getElementById("interpretation"); // Convert to numbers var valNoi = parseFloat(noi); var valPrice = parseFloat(price); // Validation if (isNaN(valNoi) || isNaN(valPrice) || valPrice <= 0 || valNoi < 0) { alert("Please enter valid positive numbers for both NOI and Sale Price."); return; } // Calculation var exitCap = (valNoi / valPrice) * 100; // Display results display.innerHTML = exitCap.toFixed(2) + "%"; resultArea.style.display = "block"; // Logic for interpretation if (exitCap = 4 && exitCap <= 7) { interpretation.innerHTML = "This is a standard market range for stable commercial real estate assets."; } else { interpretation.innerHTML = "A higher exit cap rate suggests a higher risk profile or an older asset class."; } }

Leave a Comment