Quarterly distributions per share: SCHD and VOO, 2025 Q1 through 2026 Q2
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-22, from SCHD vs VOO: Why the Dividend Yields Differ.
| quarter | schd_cash_usd | voo_cash_usd |
|---|---|---|
| Q1 2025 | 0.2488 | 1.8121 |
| Q2 2025 | 0.2602 | 1.7447 |
| Q3 2025 | 0.2604 | 1.74 |
| Q4 2025 | 0.2782 | 1.771 |
| Q1 2026 | 0.2569 | 1.8724 |
| Q2 2026 | 0.2525 | 1.9622 |
- Rows × columns
- 6 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
quarter |
text | 6 distinct values (Q1 2025, Q1 2026, Q2 2025…) | |
schd_cash_usd |
number | 0.2488 to 0.2782 | US dollars |
voo_cash_usd |
number | 1.74 to 1.9622 | US dollars |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
the exact SQL behind every number
WITH q AS (
SELECT toStartOfQuarter(ex_dividend_date) AS quarter_start,
ticker,
cash_amount
FROM global_markets.stocks_dividends
WHERE ticker IN ('SCHD', 'VOO')
AND cash_amount > 0
AND ex_dividend_date >= toDate('2025-01-01')
AND ex_dividend_date < toDate('2026-07-01')
)
SELECT concat('Q', toString(toQuarter(quarter_start)), ' ', toString(toYear(quarter_start))) AS quarter,
round(sumIf(cash_amount, ticker = 'SCHD'), 4) AS schd_cash_usd,
round(sumIf(cash_amount, ticker = 'VOO'), 4) AS voo_cash_usd
FROM q
GROUP BY quarter_start
ORDER BY quarter_start
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisSCHD vs VOO: Why the Dividend Yields Differ
Latest dividend yield: index heavyweights beside dividend-screen staples
ranking 12×4
→
SCHD and VOO annualized dividend yield: twelve month-ends through July 2026
series 12×5
→
Trailing twelve-month distribution yield: dividend funds beside the S&P 500 tracker
table 7×5
→
Monthly payers in the dividend record, by completed calendar year
ranking 21×3
→
Trailing 12 month distribution rate, by fund family
ranking 12×3
→
Distributions per year: monthly funds beside quarterly benchmarks
ranking 12×3
→
See all 2,170 queries →