annual_totals
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-09-26, from hon-dividend-history.
| year | dividends_per_share | payments | yoy_growth_pct |
|---|---|---|---|
| 2005 | 0.825 | 4 | None |
| 2006 | 0.9075 | 4 | 10 |
| 2007 | 1 | 4 | 10.2 |
| 2008 | 1.1 | 4 | 10 |
| 2009 | 1.21 | 4 | 10 |
| 2010 | 1.21 | 4 | 0 |
| 2011 | 1.37 | 4 | 13.2 |
| 2012 | 1.5275 | 4 | 11.5 |
| 2013 | 1.68 | 4 | 10 |
| 2014 | 1.8675 | 4 | 11.2 |
| 2015 | 2.1475 | 4 | 15 |
| 2016 | 2.45 | 4 | 14.1 |
| 2017 | 2.74 | 4 | 11.8 |
| 2018 | 3.055 | 4 | 11.5 |
| 2019 | 3.36 | 4 | 10 |
| 2020 | 3.63 | 4 | 8 |
| 2021 | 3.77 | 4 | 3.9 |
| 2022 | 3.97 | 4 | 5.3 |
| 2023 | 4.17 | 4 | 5 |
| 2024 | 4.37 | 4 | 4.8 |
| 2025 | 4.58 | 4 | 4.8 |
- Rows × columns
- 21 × 4
- Computed
- Completeness
- Some fields are partly empty — see the columns below
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
year |
text | 21 distinct values (2005, 2006, 2007…) | |
dividends_per_share |
number | 0.825 to 4.58 | |
payments |
number | every row is 4 | |
yoy_growth_pct |
number | 0 to 15 | percent · 20 of 21 rows populated |
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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
WITH per_ex AS
(
SELECT
toYear(ex_dividend_date) AS div_year,
ex_dividend_date AS ex_date,
max(toFloat64(cash_amount)) AS amount
FROM global_markets.stocks_dividends
WHERE ticker = 'HON'
AND ex_dividend_date >= '2005-01-01'
AND ex_dividend_date < '2026-01-01'
GROUP BY div_year, ex_date
),
yearly AS
(
SELECT
div_year,
round(sum(amount), 4) AS dividends_per_share,
count() AS payments
FROM per_ex
GROUP BY div_year
)
SELECT
toString(div_year) AS year,
dividends_per_share,
payments,
round(100 * (dividends_per_share / nullIf(any(dividends_per_share) OVER (ORDER BY div_year ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING), 0) - 1), 1) AS yoy_growth_pct
FROM yearly
ORDER BY div_year
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.