STRASMORE/EXPLORE 2,170 QUERIES

AAPL quarterly dividend by year, split adjusted, with the annual step

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 AAPL Dividend History: Splits and Raises.

as of ranking 14×3read in context →
AAPL quarterly dividend by year, split adjusted, with the annual step — 14 rows by 3 columns, computed from US exchange, SIP and OPRA data.
yearquarterly_dividend_adjustedraise_pct
20130.108915.1
20140.11757.9
20150.1310.6
20160.14259.6
20170.157510.5
20180.182515.9
20190.19255.5
20200.2056.5
20210.227.3
20220.234.5
20230.244.3
20240.254.2
20250.264
20260.273.8
Rows × columns
14 × 3
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 AAPL quarterly dividend by year, split adjusted, with the annual step, derived from the stored result.
ColumnTypeRangeNotes
year text 14 distinct values (2013, 2014, 2015…)
quarterly_dividend_adjusted number 0.1089 to 0.27
raise_pct number 3.8 to 15.9 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 payouts AS
(
    SELECT
        id,
        any(ex_dividend_date)           AS ex_date,
        any(split_adjusted_cash_amount) AS adjusted
    FROM global_markets.stocks_dividends
    WHERE ticker = 'AAPL'
      AND ex_dividend_date >= toDate('2012-01-01')
      AND ex_dividend_date <= today()
    GROUP BY id
),
by_year AS
(
    SELECT
        toYear(ex_date)                    AS y,
        round(toFloat64(max(adjusted)), 4) AS top_rate
    FROM payouts
    GROUP BY y
),
stepped AS
(
    SELECT
        y,
        top_rate,
        any(top_rate) OVER (ORDER BY y ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prior_rate
    FROM by_year
)
SELECT
    toString(y)                                 AS year,
    top_rate                                    AS quarterly_dividend_adjusted,
    round(100 * (top_rate / prior_rate - 1), 1) AS raise_pct
FROM stepped
WHERE prior_rate > 0
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 analysisAAPL Dividend History: Splits and Raises
Every AAPL dividend year, as declared and split adjusted ranking 15×4 AAPL dividends paid against free cash flow, by fiscal year ranking 13×4 Longest gaps between consecutive AAPL dividend payments, in years ranking 6×4 Every AAPL stock split and the running share count series 3×5 How a two-decade streak compounds: Microsoft's annual dividend, year by year ranking 22×2 Verizon (VZ) dividends per share by calendar year, 2005 to 2025 ranking 21×4 See all 2,170 queries →