# Running a financial due diligence checklist like an institutional buyer
Three days before closing on a $42 million suburban office park, a buyer's analyst finds a single line in a tenant's estoppel certificate that doesn't match the rent roll: $18,400 a month, not the $21,000 the seller reported. Multiply that gap across a 220,000 square foot building and the deal's valuation moves by hundreds of thousands of dollars. This is why institutional buyers, pension funds, REITs (Real Estate Investment Trusts, companies that own income-producing property and trade like stocks), and private equity real estate funds, never wire escrow money without walking the full paper trail first.
This lesson follows that trail: the documents, the regulatory backdrop, and the checks that separate a disciplined buyer from one who inherits someone else's problems.
Commercial real estate transactions are largely private, negotiated deals. Unlike public securities, there is no SEC-mandated (U.S. Securities and Exchange Commission) disclosure regime forcing sellers to reveal every liability. Buyers protect themselves contractually, through due diligence periods written into the purchase and sale agreement (PSA), typically 30 to 60 days in the U.S. commercial market, during which the buyer can inspect, verify, and walk away.
In Europe, similar protection comes through warranty and indemnity structures, sometimes backed by W&I insurance (warranty and indemnity insurance), common in UK and German deals. There is no single EU-wide due diligence law; disclosure norms vary by country and are shaped by national contract law and, for larger deals, competition clearance from the European Commission.
The regulatory backdrop matters less than the contractual one here: due diligence is a negotiated right, and institutional buyers exercise it aggressively because their limited partners (LPs, the investors who fund the deal) and fiduciary duty demand it.
The rent roll is the master spreadsheet listing every tenant, unit, lease start and end date, rent amount, and escalation terms. It is the seller's claim about the building's income. Nothing gets underwritten until it's verified.
What buyers check:
A simple worked example: if a 100,000 square foot office building shows $28 per square foot average rent (a plausible 2025 estimate for suburban U.S. office, varies widely by metro), that's $2.8 million in gross potential rent. If the estoppel process (below) reveals actual signed rent is $26 per square foot on 15,000 square feet of that space, gross income drops by $30,000 a year, which at a 6% capitalization rate (the ratio of net operating income to property value) trims valuation by roughly $500,000.
An estoppel certificate is a signed statement from each tenant confirming lease terms: rent, term, deposits held, and whether the landlord is in default. It's the single best fraud check in the process, because it comes from the tenant, not the seller.
Institutional buyers typically require estoppels from tenants representing 80 to 90% of leased square footage before waiving diligence conditions. A tenant refusing to sign, or disclosing a side letter the seller never mentioned, is a red flag serious enough to delay or reprice a deal.
CAM (common area maintenance) charges are the operating costs, landscaping, security, parking lot repairs, that landlords pass through to tenants in net leases. A CAM reconciliation is the annual true-up comparing estimated charges billed during the year against actual costs.
Why this matters financially: unresolved CAM disputes are contingent liabilities. If a seller overbilled tenants for three years and never reconciled, the buyer may inherit refund obligations. Institutional buyers request the last three years of CAM reconciliations and audit letters, and flag any tenant who has formally disputed a reconciliation, since unresolved disputes often surface as lease termination leverage.
Property tax is frequently the largest single operating expense line, often 15 to 25% of total operating expenses for U.S. commercial assets (estimate, varies by state). Buyers pull the assessment history and ask:
A tax abatement expiring 18 months after closing can raise operating expenses by six figures overnight, directly cutting net operating income (NOI) and therefore value.
For a public, free reference on how commercial property assessment works in practice, the Lincoln Institute of Land Policy publishes accessible research on property tax systems across U.S. states.
Buyers request audited or reviewed financials where available, plus the T-12 (trailing twelve months of operating income and expenses) and pro forma (forward projection). Institutional buyers reconcile:
1. Income overstatement: inflated rent roll, undisclosed concessions, expiring free rent periods not reflected in trailing cash flow.
2. Expense understatement: deferred capital expenditurecapital expenditureCapital Expenditure (CapEx) is money spent to acquire, upgrade, or extend long-lived assets like equipment, property, or software that deliver value over multiple years.View full definition →, insurance claims history hidden, CAM underbilling.
3. Concentration risk: one or two tenants representing a large share of income (a single anchor tenant vacating a retail center can cut NOI by 40% or more).
4. Legal and title encumbrances: liens, easements, or pending litigation not disclosed in the title commitment.
5. Rate and refinancing risk: existing debt maturing near closing, exposing the buyer to refinancing at materially different rates than the original underwriting assumed, especially relevant given the higher-rate environment persisting into 2026 compared to the 2010s.
Knowledge check
1. Why do institutional buyers rely on a contractually negotiated due diligence period rather than statutory disclosure requirements when purchasing commercial real estate?
2. A rent roll shows a tenant paying more than what the tenant's estoppel certificate confirms. What does this discrepancy most fundamentally represent for a buyer's underwriting?
3. In European commercial real estate deals, what mechanism most commonly substitutes for the lengthy contractual due diligence periods typical in U.S. deals?
4. Select ALL correct answers about why institutional buyers such as pension funds and REITs are especially rigorous in financial due diligence.
Select all the correct answers.
5. Select ALL correct answers describing how buyer protection is structured differently between typical U.S. and European commercial real estate deals.
Select all the correct answers.
A typical institutional diligence checklist runs in this order:
1. Rent roll delivered and cross-checked against leases
2. Estoppel certificates requested from all tenants (30-day lead time is standard)
3. CAM reconciliations for the past three years
4. Tax assessment and appeal history pulled from the county or municipal assessor
5. T-12 financials and general ledger detail
6. Service contracts and any assumable debt documents
7. Environmental Phase I report and property condition assessment (separate physical due diligence tracks, but their cost estimates feed directly into the financial model)
Each item gets logged with a status: received, reviewed, flagged, or resolved. Institutional buyers use a shared data room (a secure online repository, commonly Intralinks or Datasite) where every document has a timestamp, creating an audit trail if disputes arise post-closing.
A simplified example of how a buyer might structure a tracking check in a script pulling from a data room export:
# Flag leases where estoppel rent differs from rent roll by more than 2%
for lease in leases:
variance = abs(lease["estoppel_rent"] - lease["rent_roll_rent"]) / lease["rent_roll_rent"]
if variance > 0.02:
print(f"FLAG: {lease['tenant']} variance {variance:.1%}")This kind of variance check, however basic, is exactly what a diligence analyst does manually across a hundred-line rent roll before recommending the deal proceed.
🎬 [VIDEO: "Commercial Real Estate Due Diligence Explained" - youtube.com - search for CCIM Institute or REFM due diligence walkthroughs covering rent roll and estoppel review - a practical view of the checklist from professional real estate education providers]