REIT Payout Ratio: FFO vs EPS Explained
Dividend as a percent of EPS: large equity REITs against every other US dividend payerranking ·
2026-08-22 · 2×4
Large equity REITs: dividend as a percent of earnings per share, latest snapshotranking ·
2026-08-22 · 11×3
Year-end dividend rate against twelve months earlier: how many large REITs raised or loweredtable ·
2026-08-22 · 9×5
Realty Income (O): monthly dividend per share, January 2021 to the latest declared paymentseries ·
2026-08-22 · 64×3
Dividend as a percent of EPS: large equity REITs against every other US dividend payer
Dividend as a percent of EPS: large equity REITs against every other US dividend payer
| category | company_count | median_eps_payout_pct | pct_paying_over_earnings |
|---|---|---|---|
| All other dividend payers | 1138 | 35.8 | 15.6 |
| Equity REITs | 11 | 126.4 | 81.8 |
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
More from this analysisREIT Payout Ratio: FFO vs EPS Explained
Large equity REITs: dividend as a percent of earnings per share, latest snapshot
ranking 11×3
→
Realty Income (O): monthly dividend per share, January 2021 to the latest declared payment
series 64×3
→
Year-end dividend rate against twelve months earlier: how many large REITs raised or lowered
table 9×5
→
Monthly payers in the dividend record, by completed calendar year
ranking 21×3
→
See all 2,173 queries →