Strasmore Research
Learn Matt ConnorBy Matt Connor · data as of August 4, 2026 · refreshed weekly

REIT Payout Ratio: FFO vs EPS Explained

A REIT payout ratio above 100% of earnings is normal. See how FFO and AFFO measure dividend affordability, and which warning signs actually matter.

A REIT payout ratio measured the ordinary way, dividends divided by earnings per share, routinely prints above 100%, and for a property company that reading is normal rather than a distress flag. The gap is depreciation: accounting rules charge a slice of every building's cost against profit each year, even while the building holds or gains market value. Funds from operations (FFO) and adjusted funds from operations (AFFO) are the two measures built to strip that charge back out.

Why do REIT payout ratios exceed 100% of earnings?

A real estate investment trust (REIT) owns income-producing property and skips corporate income tax, in exchange for distributing at least 90% of its taxable income to shareholders every year. Its assets are buildings. US accounting rules depreciate a building on a fixed schedule, 27.5 years for residential property and 39 years for commercial, and that charge hits the income statement whether or not the property has lost a cent of value.

Depreciation moves no cash. It lowers reported net income, and earnings per share (EPS) with it, while the rent still arrives in the bank account. A REIT can pay a dividend that dwarfs EPS and still cover it out of ordinary operating cash. Set the property companies beside every other dividend payer in the market and the split shows up immediately.

QueryDividend as a percent of EPS: large equity REITs against every other US dividend payer
The exact SQL behind every number
SELECT multiIf(ticker IN ('O','SPG','PLD','PSA','AVB','EQR','VTR','WELL','KIM','FRT','NNN','MAA','ARE','IRM'),
               'Equity REITs',
               'All other dividend payers') AS category,
       count() AS company_count,
       round(quantileDeterministic(0.5)(toFloat64(dividend_yield * price / earnings_per_share) * 100,
                                        cityHash64(ticker)), 1) AS median_eps_payout_pct,
       round(100 * countIf(dividend_yield * price > earnings_per_share) / count(), 1) AS pct_paying_over_earnings
FROM global_markets.stocks_ratios
WHERE date = (SELECT max(date) FROM global_markets.stocks_ratios)
  AND price >= 5
  AND market_cap >= 1000000000
  AND dividend_yield > 0
  AND earnings_per_share > 0
GROUP BY category
ORDER BY category
Run this yourself

Among the 1132 other US payers above $1 billion in market value with positive earnings, the median company distributes 36.9% of EPS, and 15.2% pay out more than they earn. Across the 13 REITs in the panel the median is 124.1%, and 76.9% of them write a dividend check larger than reported earnings. One ratio, two different worlds.

Name by name, the spread inside the group is wide.

QueryLarge equity REITs: dividend as a percent of earnings per share, latest snapshot
The exact SQL behind every number
SELECT ticker,
       round(toFloat64(argMax(dividend_yield * price / earnings_per_share, date)) * 100, 1) AS eps_payout_ratio_pct,
       round(toFloat64(argMax(dividend_yield, date)) * 100, 2) AS dividend_yield_pct
FROM global_markets.stocks_ratios
WHERE ticker IN ('O','SPG','PLD','PSA','AVB','EQR','VTR','WELL','KIM','FRT','NNN','MAA','ARE','IRM')
  AND date = (SELECT max(date) FROM global_markets.stocks_ratios)
  AND dividend_yield > 0
  AND earnings_per_share > 0
GROUP BY ticker
ORDER BY eps_payout_ratio_pct DESC
Run this yourself

VTR tops the panel at 359.8% of earnings on a 2.02% yield, and the lowest reading of the 13 names, SPG, comes in at 70%. A screener that ranks dividend safety on EPS payout alone files most of this list under danger. The dividend payout ratio page covers the general-purpose version of the statistic. Property companies need the correction below.

What is FFO?

Nareit, the industry body whose definition most REITs follow, builds FFO from GAAP net income: add back depreciation and amortization on real estate, then subtract gains on property sales and add back losses on them. Sales gains are lumpy and non-recurring, so they leave. Depreciation is non-cash, so it returns. What remains answers a narrow question: how much cash-like profit the portfolio produced from operating property this year, before one-off transactions.

What is AFFO, and which ratio measures dividend safety?

AFFO starts from FFO and subtracts what FFO ignores. Recurring maintenance capital comes out: roofs, parking lots, elevators, and HVAC, the spending a landlord repeats forever to keep rent flowing. Straight-line rent comes out too, an accounting adjustment that books an average rent across a whole lease term rather than the cash actually collected this year. Leasing commissions and tenant improvement allowances usually come out as well.

AFFO is the better affordability test. FFO removes the depreciation distortion but still credits a REIT with money it has to spend on the buildings. AFFO measures what is genuinely left for shareholders. One catch: Nareit standardizes FFO, and nobody standardizes AFFO. Each REIT defines it in its own quarterly supplemental, so comparing AFFO across two companies is a read-the-footnotes exercise.

One dividend, three payout ratios

Take a hypothetical REIT's year. It reports $40 million of net income, $120 million of real-estate depreciation, and a $10 million gain on the sale of a building. It has 100 million shares outstanding and pays $1.10 a share, $110 million in total. It spends $30 million on recurring maintenance capital, and straight-line rent adds $5 million of non-cash revenue.

  1. Against EPS. Net income of $40 million over 100 million shares is $0.40 a share. The $1.10 dividend is 275% of it. Reckless, on its face.
  2. Against FFO. $40 million plus $120 million of depreciation minus the $10 million gain is $150 million, or $1.50 a share. The dividend is 73% of that. Comfortable.
  3. Against AFFO. Take out $30 million of maintenance capital and $5 million of straight-line rent: $115 million, or $1.15 a share. The dividend is 96% of that. Tight.

Same company, same year, same check. The first number is an accounting artifact. The third describes how much room the payout actually has.

The warning signs the correction does not erase

  • An AFFO payout ratio drifting toward 100%. FFO coverage can look comfortable while AFFO coverage vanishes, and the difference between the two is the maintenance spending a landlord cannot skip.
  • A distribution funded from outside operations. When dividends paid exceed net cash from operating activities, and share issuance or property sales fill the gap, shareholders are being paid with shareholders' money. The cash flow statement is where that shows up.
  • The 90% distribution requirement cuts both ways. It is what makes a REIT tax-advantaged, and it leaves little retained cash, so expansion is financed by issuing equity or debt. When share prices fall or credit tightens, that funding channel narrows while the distribution requirement stays.

A yield that climbs while the price falls is a separate problem, covered in dividend yield traps. Reductions among REITs are not hypothetical either. The panel below compares each REIT's year-end payment rate with its rate twelve months earlier.

QueryYear-end dividend rate against twelve months earlier: how many large REITs raised or lowered
The exact SQL behind every number
WITH yearly AS (
    SELECT ticker,
           toYear(ex_dividend_date) AS pay_year,
           argMax(toFloat64(cash_amount), ex_dividend_date) AS year_end_rate
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('O','SPG','PLD','PSA','AVB','EQR','VTR','WELL','KIM','FRT','NNN','MAA','ARE','IRM')
      AND distribution_type = 'recurring'
      AND cash_amount > 0
      AND ex_dividend_date >= toDate('2016-01-01')
      AND ex_dividend_date < toDate('2026-01-01')
    GROUP BY ticker, pay_year
),
shifted AS (
    SELECT ticker AS prior_ticker,
           pay_year + 1 AS compare_year,
           year_end_rate AS prior_rate
    FROM yearly
)
SELECT cur.pay_year AS year,
       count() AS reits_compared,
       countIf(cur.year_end_rate > shifted.prior_rate * 1.005) AS raised,
       countIf(cur.year_end_rate < shifted.prior_rate * 0.995) AS lowered,
       countIf(cur.year_end_rate >= shifted.prior_rate * 0.995
               AND cur.year_end_rate <= shifted.prior_rate * 1.005) AS unchanged
FROM yearly AS cur
INNER JOIN shifted ON cur.ticker = shifted.prior_ticker AND cur.pay_year = shifted.compare_year
WHERE cur.pay_year >= 2017
GROUP BY year
ORDER BY year
Run this yourself

In 2020, 2 of the 10 names in the comparison lowered or suspended the payment during the pandemic shutdowns. In 2025, the last of the 9 years shown, 12 of 14 carried a higher rate than twelve months earlier. Dividend cuts walks through how those decisions reach shareholders.

A monthly payer up close

Monthly payers make the mechanics easy to watch. Realty Income (O) pays every month, and its record since the start of 2021 is a ladder.

QueryRealty Income (O): monthly dividend per share, January 2021 to the latest declared payment
The exact SQL behind every number
WITH m AS (
    SELECT toStartOfMonth(ex_dividend_date) AS month_start,
           max(toFloat64(cash_amount)) AS rate
    FROM global_markets.stocks_dividends
    WHERE ticker = 'O'
      AND distribution_type = 'recurring'
      AND cash_amount > 0
      AND ex_dividend_date >= toDate('2021-01-01')
      AND ex_dividend_date < toDate('2026-08-01')
    GROUP BY month_start
)
SELECT formatDateTime(month_start, '%Y-%m') AS month,
       formatDateTimeInJodaSyntax(month_start, 'MMMM yyyy') AS month_label,
       round(rate, 4) AS monthly_dividend_usd
FROM m
ORDER BY month_start
Run this yourself

The rate moved from $0.2345 in January 2021 to $0.271 in July 2026 across 64 consecutive monthly payments. Small and frequent increases are this company's signature. The EPS payout ratio in the second panel above says nothing useful about whether those payments were affordable. The AFFO ratio in the quarterly supplemental is where that coverage is visible. Realty Income's dividend history has the detail, and monthly dividend stocks covers the wider group of monthly payers.

REIT payout ratio FAQ

Why is a REIT payout ratio over 100% not a red flag?

Depreciation on buildings is a large non-cash charge against reported earnings, and it pushes a REIT's EPS below the cash its properties generate. A payout above 100% of EPS is the normal state for a property company. The comparable test is the payout against FFO, and better still against AFFO.

What is the difference between FFO and AFFO?

FFO is net income plus real-estate depreciation and amortization, minus gains on property sales. AFFO starts from FFO and further subtracts recurring maintenance capital spending and straight-line rent. Nareit standardizes FFO. Each REIT defines its own AFFO in its quarterly supplemental.

What is a healthy AFFO payout ratio?

There is no standardized figure, and definitions differ between companies, so the useful comparison is one REIT's AFFO payout against its own history. A ratio drifting toward 100% leaves nothing out of operating cash for maintenance capital or debt repayment.

Do REITs have to pay dividends?

A REIT must distribute at least 90% of its taxable income each year to keep its tax status. Taxable income is not the same as FFO or cash flow, and depreciation reduces taxable income as well, so the required minimum often sits well below what a REIT actually pays.

How can you tell if a REIT is funding its dividend with new shares?

Compare dividends paid with net cash from operating activities on the cash flow statement. When dividends paid run ahead of operating cash flow, and share issuance or asset sales fill the difference, the distribution is not coming from the portfolio's own cash.


Every panel here is a stored query over filed dividend records and reported ratios. Open the SQL behind any of them, or screen REIT payout ratios yourself on the Strasmore terminal.