raise_history
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 jnj-dividend-increase-history.
| year | quarterly_dividend | raise_cents | raise_pct | declared | goes_ex |
|---|---|---|---|---|---|
| 2006 | 0.375 | 4.5 | 13.64 | None | May |
| 2007 | 0.415 | 4 | 10.67 | None | May |
| 2008 | 0.46 | 4.5 | 10.84 | None | May |
| 2009 | 0.49 | 3 | 6.52 | None | May |
| 2010 | 0.54 | 5 | 10.2 | None | May |
| 2011 | 0.57 | 3 | 5.56 | None | May |
| 2012 | 0.61 | 4 | 7.02 | October | May |
| 2013 | 0.66 | 5 | 8.2 | April | May |
| 2014 | 0.7 | 4 | 6.06 | April | May |
| 2015 | 0.75 | 5 | 7.14 | April | May |
| 2016 | 0.8 | 5 | 6.67 | April | May |
| 2017 | 0.84 | 4 | 5 | April | May |
| 2018 | 0.9 | 6 | 7.14 | April | May |
| 2019 | 0.95 | 5 | 5.56 | April | May |
| 2020 | 1.01 | 6 | 6.32 | April | May |
| 2021 | 1.06 | 5 | 4.95 | April | May |
| 2022 | 1.13 | 7 | 6.6 | April | May |
| 2023 | 1.19 | 6 | 5.31 | April | May |
| 2024 | 1.24 | 5 | 4.2 | April | May |
| 2025 | 1.3 | 6 | 4.84 | April | May |
| 2026 | 1.34 | 4 | 3.08 | April | May |
- Rows × columns
- 21 × 6
- 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 (2006, 2007, 2008…) | |
quarterly_dividend |
number | 0.375 to 1.34 | |
raise_cents |
number | 3 to 7 | |
raise_pct |
number | 3.08 to 13.64 | percent |
declared |
text | 2 distinct values (April, October) | 15 of 21 rows populated |
goes_ex |
text | 1 distinct value (May) |
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
payments AS
(
SELECT
toYear(ex_dividend_date) AS div_year,
ex_dividend_date AS ex_date,
any(declaration_date) AS declared_date,
max(toFloat64(cash_amount)) AS amount
FROM global_markets.stocks_dividends
WHERE ticker = 'JNJ'
AND frequency = 4
AND ex_dividend_date >= '2004-01-01'
AND ex_dividend_date < '2027-01-01'
GROUP BY ex_dividend_date
),
yearly AS
(
SELECT
div_year,
div_year - 1 AS prior_year,
round(max(amount), 4) AS quarterly_rate
FROM payments
GROUP BY div_year
),
step_up AS
(
SELECT
p.div_year AS div_year,
arrayElement(['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], toMonth(min(p.declared_date))) AS declared,
arrayElement(['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], toMonth(min(p.ex_date))) AS goes_ex
FROM payments AS p
INNER JOIN yearly AS y ON y.div_year = p.div_year
WHERE round(p.amount, 4) = y.quarterly_rate
GROUP BY p.div_year
)
SELECT
toString(cur.div_year) AS year,
cur.quarterly_rate AS quarterly_dividend,
round((cur.quarterly_rate - prv.quarterly_rate) * 100, 1) AS raise_cents,
round((cur.quarterly_rate / prv.quarterly_rate - 1) * 100, 2) AS raise_pct,
s.declared AS declared,
s.goes_ex AS goes_ex
FROM yearly AS cur
INNER JOIN yearly AS prv ON prv.div_year = cur.prior_year
LEFT JOIN step_up AS s ON s.div_year = cur.div_year
WHERE cur.div_year >= 2006
ORDER BY cur.div_year
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.