STRASMORE/EXPLORE 2,170 QUERIES

JNJ dividend raises: declaration date, old rate, new rate, 2016 to 2026

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-03, from When Companies Announce Dividend Raises.

as of table 11×5read in context →
JNJ dividend raises: declaration date, old rate, new rate, 2016 to 2026 — 11 rows by 5 columns, computed from US exchange, SIP and OPRA data.
yeardeclared_onold_quarterly_usdnew_quarterly_usdraise_pct
2016Apr 280.750.86.7
2017Apr 270.80.845
2018Apr 260.840.97.1
2019Apr 250.90.955.6
2020Apr 140.951.016.3
2021Apr 201.011.065
2022Apr 191.061.136.6
2023Apr 181.131.195.3
2024Apr 161.191.244.2
2025Apr 151.241.34.8
2026Apr 141.31.343.1
Rows × columns
11 × 5
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for JNJ dividend raises: declaration date, old rate, new rate, 2016 to 2026, derived from the stored result.
ColumnTypeRangeNotes
year number 2,016 to 2,026
declared_on text 10 distinct values (Apr 14, Apr 15, Apr 16…)
old_quarterly_usd number 0.75 to 1.3 US dollars
new_quarterly_usd number 0.8 to 1.34 US dollars
raise_pct number 3.1 to 7.1 percent

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 quarterly AS (
    SELECT ex_dividend_date,
           round(max(toFloat64(cash_amount)), 4) AS amount,
           max(declaration_date) AS declared
    FROM global_markets.stocks_dividends
    WHERE ticker = 'JNJ'
      AND distribution_type = 'recurring'
      AND frequency = 4
      AND cash_amount > 0
      AND declaration_date > toDate('2015-06-30')
      AND ex_dividend_date >= toDate('2015-07-01')
      AND ex_dividend_date <= toDate('2026-07-31')
    GROUP BY ex_dividend_date
),
stepped AS (
    SELECT declared,
           amount,
           ex_dividend_date,
           lagInFrame(amount, 1) OVER (ORDER BY ex_dividend_date ASC
                                       ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prior_amount,
           lagInFrame(ex_dividend_date, 1) OVER (ORDER BY ex_dividend_date ASC
                                       ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prior_ex_date
    FROM quarterly
)
SELECT toYear(declared) AS year,
       formatDateTimeInJodaSyntax(declared, 'MMM d') AS declared_on,
       round(prior_amount, 4) AS old_quarterly_usd,
       round(amount, 4) AS new_quarterly_usd,
       round(100 * (amount / prior_amount - 1), 1) AS raise_pct
FROM stepped
WHERE prior_amount > 0
  AND amount > prior_amount * 1.005
  AND dateDiff('day', prior_ex_date, ex_dividend_date) BETWEEN 45 AND 200
ORDER BY year

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 analysisWhen Companies Announce Dividend Raises
Declaration record by year: recurring dividends, count, and days from declaration to ex-date table 11×5 Dividend raises by declaration month: US recurring quarterly payers, July 2015 to July 2026 ranking 12×3 Typical raise month by company: twelve dividend growers, raises since 2016 series 12×5 Share of annual raises declared in the same month as the prior raise, by year ranking 10×4 Verizon (VZ) dividend increases: declaration date, ex dividend date, and step size table 13×5 Verizon (VZ) dividends per share by calendar year, 2005 to 2025 ranking 21×4 See all 2,170 queries →