How to Calculate Tenant’s Pro Rata Share

Tenant Pro Rata Share Calculator

Calculation Results:

Pro Rata Share Percentage:

Tenant's Total Expense Obligation:

This represents the portion of CAM (Common Area Maintenance), taxes, and insurance the tenant is responsible for based on their footprint.

function calculateProRata() { var tenantSqFt = parseFloat(document.getElementById('tenantSqFt').value); var totalBuildingSqFt = parseFloat(document.getElementById('totalBuildingSqFt').value); var totalExpenses = parseFloat(document.getElementById('totalExpenses').value); var resultsDiv = document.getElementById('calculator-results'); if (isNaN(tenantSqFt) || isNaN(totalBuildingSqFt) || tenantSqFt <= 0 || totalBuildingSqFt totalBuildingSqFt) { alert("Tenant square footage cannot exceed total building square footage."); return; } // Calculation Logic var proRataPercentage = (tenantSqFt / totalBuildingSqFt) * 100; resultsDiv.style.display = 'block'; document.getElementById('proRataPercent').innerText = proRataPercentage.toFixed(2) + "%"; if (!isNaN(totalExpenses) && totalExpenses >= 0) { var shareCost = (proRataPercentage / 100) * totalExpenses; document.getElementById('tenantExpenseCost').innerText = "$" + shareCost.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); } else { document.getElementById('tenantExpenseCost').innerText = "N/A (Enter total expenses to calculate)"; } }

Understanding Tenant Pro Rata Share

In commercial real estate, a "Pro Rata Share" defines the equitable portion of a building's operating expenses that a specific tenant is responsible for paying. This is most common in Triple Net (NNN) leases, where tenants pay their base rent plus a share of property taxes, insurance, and Common Area Maintenance (CAM).

The Pro Rata Share Formula

The calculation is straightforward but critical for budgeting. The formula used in the calculator above is:

Pro Rata Share % = (Tenant's Rentable Square Feet / Total Building Rentable Square Feet) x 100

Real-World Example

Imagine a shopping center with a total rentable area of 50,000 square feet. You decide to lease a boutique space that is 2,500 square feet. To find your pro rata share:

  • Step 1: Divide your space (2,500) by the total space (50,000).
  • Step 2: 2,500 / 50,000 = 0.05.
  • Step 3: Convert to a percentage: 0.05 x 100 = 5%.

If the annual property taxes and maintenance for the entire shopping center are $100,000, your 5% share would result in an additional $5,000 payment per year on top of your base rent.

Why Accuracy Matters

Tenant pro rata shares can change if the building is remeasured or if common areas are converted into rentable space. Tenants should ensure that the "Total Rentable Area" used in the denominator includes all leasable spaces, not just the spaces currently occupied. If the denominator is smaller than it should be, the tenant's share percentage—and their costs—will be unfairly high.

Key Terms to Know

  • Rentable Square Footage (RSF): The total square footage for which the tenant pays rent, often including a portion of shared lobbies or hallways.
  • Usable Square Footage (USF): The actual space contained within the tenant's walls.
  • Load Factor: The multiplier applied to usable space to account for shared building amenities.
  • CAM Charges: Costs associated with cleaning, landscaping, and repairing common areas.

Leave a Comment