Strasmore Research
Learn Matt ConnorBy Matt Connor

Honeywell (HON) Dividend History by Year

Honeywell dividend history in one table: every HON declaration with ex, record and pay dates, the raise size each year, and the usual announcement month.

Honeywell dividend history, in one place: every recent HON declaration with the cash amount per share, the ex dividend date, the record date, the pay date and the date the board declared it. As of the Aug 14, 2026 ex dividend date, the quarterly rate stands at $0.7 per share. Below the table sit the two things a payment list leaves out: the size of each raise, and the month Honeywell habitually announces one.

The full HON dividend history table

A dividend declaration is one board decision with four dates attached to it. The declaration date is the day the board approves the payment. The ex dividend date is the first day the stock trades without the right to that payment, and it is the date that settles who gets paid; our ex dividend date guide walks through that mechanic in full. The record date is the holder snapshot taken after settlement. The pay date is when the cash actually lands.

QueryHoneywell (HON) dividend declarations, most recent first
ex_dateex_date_labelcash_amountrecordpayabledeclared
2026-08-14Aug 14, 20260.7Aug 14, 2026Sep 4, 2026Jul 24, 2026
2026-05-15May 15, 20261.19May 15, 2026Jun 5, 2026Apr 27, 2026
2026-02-27Feb 27, 20261.19Feb 27, 2026Mar 13, 2026Feb 13, 2026
2025-11-14Nov 14, 20251.19Nov 14, 2025Dec 5, 2025Sep 26, 2025
2025-08-15Aug 15, 20251.13Aug 15, 2025Sep 5, 2025Jul 25, 2025
2025-05-16May 16, 20251.13May 16, 2025Jun 6, 2025Apr 28, 2025
2025-02-28Feb 28, 20251.13Feb 28, 2025Mar 14, 2025Feb 14, 2025
2024-11-15Nov 15, 20241.13Nov 15, 2024Dec 6, 2024Sep 27, 2024
2024-08-16Aug 16, 20241.08Aug 16, 2024Sep 6, 2024Jul 26, 2024
2024-05-16May 16, 20241.08May 17, 2024Jun 7, 2024Apr 29, 2024
2024-02-29Feb 29, 20241.08Mar 1, 2024Mar 15, 2024Feb 16, 2024
2023-11-09Nov 9, 20231.08Nov 10, 2023Dec 1, 2023Sep 29, 2023
2023-08-10Aug 10, 20231.03Aug 11, 2023Sep 1, 2023Jul 28, 2023
2023-05-11May 11, 20231.03May 12, 2023Jun 2, 2023Apr 24, 2023
2023-02-23Feb 23, 20231.03Feb 24, 2023Mar 10, 2023Feb 10, 2023
2022-11-09Nov 9, 20221.03Nov 11, 2022Dec 2, 2022Sep 30, 2022
The exact SQL behind every number
SELECT
    toString(ex_dividend_date)                          AS ex_date,
    formatDateTime(ex_dividend_date, '%b %e, %Y')       AS ex_date_label,
    round(max(toFloat64(cash_amount)), 4)               AS cash_amount,
    formatDateTime(max(record_date), '%b %e, %Y')       AS record,
    formatDateTime(max(pay_date), '%b %e, %Y')          AS payable,
    formatDateTime(max(declaration_date), '%b %e, %Y')  AS declared
FROM global_markets.stocks_dividends
WHERE ticker = 'HON'
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date DESC
LIMIT 16
Run this yourself

That is the last 16 quarters, newest at the top. The per share rate reads $1.03 on the Nov 9, 2022 ex date and $0.7 on Aug 14, 2026. Every figure on this page comes from the same declaration record that backs our HON dividend page and our Apple dividend history, so the three pages cannot disagree with each other. Current yield, payout coverage and the next scheduled date are handled on the HON dividend page; this one is the record.

How much does Honeywell raise the dividend each year?

Honeywell has stepped the quarterly rate up in one move per year rather than in small monthly increments. The panel below finds every step by comparing each quarter's per share amount with the quarter immediately before it, and prints a row only where the amount moved up.

QueryEvery step up in the HON quarterly rate since 2010
effective_fromannouncedprior_ratenew_rateincrease_pct
Feb 2011None0.30250.33259.9
Nov 2011None0.33250.372512
Nov 2012Oct 20120.37250.4110.1
Nov 2013Oct 20130.410.459.8
Nov 2014Oct 20140.450.517515
Nov 2015Oct 20150.51750.59515
Nov 2016Oct 20160.5950.66511.8
Nov 2017Sep 20170.6650.74512
Nov 2018Sep 20180.7450.8210.1
Nov 2019Sep 20190.820.99.8
Nov 2020Sep 20200.90.933.3
Nov 2021Oct 20210.930.985.4
Nov 2022Sep 20220.981.035.1
Nov 2023Sep 20231.031.084.9
Nov 2024Sep 20241.081.134.6
Nov 2025Sep 20251.131.195.3
The exact SQL behind every number
WITH per_ex AS
(
    SELECT
        ex_dividend_date            AS ex_date,
        max(toFloat64(cash_amount)) AS amount,
        max(declaration_date)       AS declared_on
    FROM global_markets.stocks_dividends
    WHERE ticker = 'HON'
      AND ex_dividend_date >= '2010-01-01'
    GROUP BY ex_date
),
stepped AS
(
    SELECT
        ex_date,
        declared_on,
        amount,
        any(amount) OVER (ORDER BY ex_date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prior_amount
    FROM per_ex
)
SELECT
    formatDateTime(ex_date, '%b %Y')            AS effective_from,
    formatDateTime(declared_on, '%b %Y')        AS announced,
    round(prior_amount, 4)                      AS prior_rate,
    round(amount, 4)                            AS new_rate,
    round(100 * (amount / prior_amount - 1), 1) AS increase_pct
FROM stepped
WHERE prior_amount > 0
  AND amount > prior_amount
ORDER BY ex_date
Run this yourself

The record holds 16 increases, the first of them effective Feb 2011. The two ends of the panel bracket the pattern: 9.9% on that first step, and 5.3% on the most recent one, which took the quarterly rate from $1.13 to $1.19 and was announced in Sep 2025. The bars in between show where each individual year landed. Read them as a base rate for what this board has done, not as a schedule for what it will do next.

What month does Honeywell announce the increase?

Declarations are not spread evenly across the calendar. Honeywell's board declares four times a year, and the increase has habitually travelled with one of those four declarations rather than any of the others.

QueryWhich month carries the HON rate increase (declarations since 2010)
announced_indeclarationsrate_increases
Sep88
Oct66
None112
Feb140
Apr140
Jul140
The exact SQL behind every number
WITH per_ex AS
(
    SELECT
        ex_dividend_date            AS ex_date,
        max(toFloat64(cash_amount)) AS amount,
        max(declaration_date)       AS declared_on
    FROM global_markets.stocks_dividends
    WHERE ticker = 'HON'
      AND ex_dividend_date >= '2010-01-01'
    GROUP BY ex_date
),
stepped AS
(
    SELECT
        declared_on,
        amount,
        any(amount) OVER (ORDER BY ex_date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prior_amount
    FROM per_ex
)
SELECT
    formatDateTime(declared_on, '%b')                   AS announced_in,
    count()                                             AS declarations,
    countIf(prior_amount > 0 AND amount > prior_amount) AS rate_increases
FROM stepped
GROUP BY announced_in, toMonth(declared_on)
ORDER BY rate_increases DESC, declarations DESC, toMonth(declared_on)
Run this yourself

Since 2010 the declarations land in 6 distinct calendar months. Sep carries the most rate increases, 8 of the 8 declarations made in that month. The other months mostly repeat the standing rate. A board can move its own timing by a few weeks from one year to the next, and the panel is a count of what happened, nothing more.

Honeywell dividend by year, and the portfolio separations

Summing the quarterly payments inside each calendar year gives the per share cash a single share collected that year, which is the figure our guide to annual dividend per share builds on.

QueryHON dividends per share by calendar year, with year over year change
21 rows (showing 20)
yeardividends_per_sharepaymentsyoy_growth_pct
20050.8254None
20060.9075410
20071410.2
20081.1410
20091.21410
20101.2140
20111.37413.2
20121.5275411.5
20131.68410
20141.8675411.2
20152.1475415
20162.45414.1
20172.74411.8
20183.055411.5
20193.36410
20203.6348
20213.7743.9
20223.9745.3
20234.1745
20244.3744.8
The exact SQL behind every number
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
Run this yourself

The 2025 total came to $4.58 per share across 4 payments, 4.8% against the year before it. The count in the payments column is worth watching alongside the total: a calendar year that happens to catch five ex dates, or three, moves the annual figure without the quarterly rate changing at all.

In October 2018 Honeywell completed the spin offs of Garrett Motion and Resideo Technologies, and the company has announced further portfolio separations since. A spin off hands existing shareholders stock in the newly independent company, and the parent's own per share rate is set afterwards by its board rather than by the transaction itself. The panel above covers that window directly: $2.74 per share in 2017, $3.055 in 2018, and $3.36 in 2019. The per share rate did not step down across the separation. That is one company's record over one window, and the cohort panel below shows that it is not the only outcome available to a large industrial that breaks itself up.

How the growth streak compares with the cohort

Honeywell sits inside a group of large capitalisation industrial and consumer names with long raise records; we track the wider group on our dividend growth champions page. The panel takes each name's full calendar year per share total for 2020 and for 2025 and turns the pair into a compound annual rate, listed alphabetically.

QueryFive year dividend per share growth, HON against a large cap raiser cohort
tickerdps_2020dps_2025growth_5y_pct
CAT4.125.847.2
EMR22.141.3
HON3.634.584.8
ITW4.423.11-6.8
JNJ3.985.145.2
KO1.642.044.5
MMM5.882.92-13.1
PG3.124.186
The exact SQL behind every number
WITH per_ex AS
(
    SELECT
        ticker,
        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 IN ('HON', 'MMM', 'ITW', 'EMR', 'CAT', 'JNJ', 'PG', 'KO')
      AND ex_dividend_date >= '2020-01-01'
      AND ex_dividend_date <  '2026-01-01'
    GROUP BY ticker, div_year, ex_date
),
yearly AS
(
    SELECT
        ticker,
        div_year,
        sum(amount) AS dps
    FROM per_ex
    GROUP BY ticker, div_year
)
SELECT
    ticker,
    round(sumIf(dps, div_year = 2020), 2) AS dps_2020,
    round(sumIf(dps, div_year = 2025), 2) AS dps_2025,
    round(100 * (pow(sumIf(dps, div_year = 2025) / sumIf(dps, div_year = 2020), 1.0 / 5) - 1), 1) AS growth_5y_pct
FROM yearly
GROUP BY ticker
HAVING sumIf(dps, div_year = 2020) > 0
   AND sumIf(dps, div_year = 2025) > 0
ORDER BY ticker
Run this yourself

HON took its annual per share total from $3.63 in 2020 to $4.58 in 2025, a compound 4.8% a year. Of the 8 names in the panel, one sits below zero over the same five years: MMM, at -13.1%. A five year compound rate flattens the detail underneath it, so a name that raised hard once and then held flat reads the same as one that stepped up every twelve months. For a payer with a much shorter record and a different shape, Apple's dividend history covers the same five years.

How these panels are built

Each row in the declaration record is one board declared cash dividend, deduplicated by ex dividend date, with the cash amount shown as it was declared at the time rather than restated for any later corporate action. The raise panels compare each quarter's per share amount with the quarter before it and print a row only where the amount moved up, which is why a quarter at an unchanged rate never appears. The yearly and cohort panels use complete calendar years only, so the current year stays out of the comparison until it closes.

FAQ

How often does Honeywell pay a dividend?

Four times a year. The declaration record at the top of this page lists each payment with its ex dividend date, record date and pay date, and the payments column in the yearly panel confirms the count in each calendar year.

When does Honeywell usually announce a dividend increase?

On the record since 2010, Sep is the declaration month that has carried the most rate increases, 8 of them. The increase then takes effect with the next quarterly ex dividend date rather than immediately.

Has Honeywell ever cut its dividend?

The yearly panel answers this directly: a reduction shows up as a negative figure in the year over year column. Check that column rather than a streak count, since the annual total also shifts when a calendar year catches a different number of ex dates.

What is the difference between the ex dividend date and the record date?

The ex dividend date is the first session on which a buyer no longer receives the upcoming payment, and it is the one that decides entitlement. The record date is the holder list snapshot that follows settlement. Our ex dividend date explainer covers both with a worked timeline.

Are the amounts in this table adjusted for stock splits?

No. Each row carries the cash amount per share as declared for that quarter, which is what a holder of one share at the time actually received. A split adjusted series answers a different question, and it will not match a historical press release.


Every panel here ships with the SQL that produced it, expandable underneath the chart. To pull the same declaration record for a different ticker, ask for it in plain English on the Strasmore terminal.