Strasmore Research
Learn Matt ConnorBy Matt Connor · data as of August 15, 2026 · refreshed weekly

Dividend Yield vs Payout Ratio: Key Differences

Dividend yield vs payout ratio: one divides the payout by the share price, the other by earnings. Only one of the two speaks to dividend sustainability.

Dividend yield vs payout ratio comes down to one structural difference: the two fractions share a numerator and split on the denominator. Yield divides the dividend by the share price, so it re-prices on every trade and carries no information about the company itself. Payout ratio divides that same dividend by earnings, so it moves only when the business moves, and it is the half of the pair that speaks to whether the dividend is affordable.

Dividend yield vs payout ratio, side by side

Dividend yield is the cash paid per share over the trailing year divided by the current share price, quoted as a percent. Payout ratio is that same trailing dividend per share divided by earnings per share over a comparable span, also quoted as a percent. Each has its own mechanics, forward versus trailing quotes on one side and several possible earnings bases on the other, covered in our dividend yield explainer and our payout ratio guide. This page is about what the two do when you read them together.

The panel below runs both calculations for eight large dividend payers off a single numerator: the cash actually paid per share over the trailing 365 days, taken from the dividend record itself.

QueryOne dividend, two denominators: yield and payout ratio for eight large payers
The exact SQL behind every number
WITH trailing_dividends AS
(
    SELECT
        ticker,
        sum(amount) AS dividend_per_share
    FROM
    (
        SELECT
            ticker,
            id,
            any(toFloat64(cash_amount)) AS amount
        FROM global_markets.stocks_dividends
        WHERE ticker IN ('AAPL', 'ABBV', 'COST', 'CVX', 'HD', 'IBM', 'JNJ', 'KO')
          AND ex_dividend_date >  today() - 365
          AND ex_dividend_date <= today()
          AND frequency > 0
          AND currency = 'USD'
        GROUP BY ticker, id
    )
    GROUP BY ticker
),
latest_ratios AS
(
    SELECT
        ticker,
        argMax(toFloat64(price), date)              AS share_price,
        argMax(toFloat64(earnings_per_share), date) AS eps_ttm
    FROM global_markets.stocks_ratios
    WHERE ticker IN ('AAPL', 'ABBV', 'COST', 'CVX', 'HD', 'IBM', 'JNJ', 'KO')
      AND date >= today() - 45
    GROUP BY ticker
)
SELECT
    d.ticker                                             AS ticker,
    round(100 * d.dividend_per_share / r.share_price, 2) AS dividend_yield_pct,
    round(100 * d.dividend_per_share / r.eps_ttm, 1)     AS payout_ratio_pct
FROM trailing_dividends AS d
INNER JOIN latest_ratios AS r ON r.ticker = d.ticker
WHERE r.share_price > 0
  AND r.eps_ttm > 0
ORDER BY payout_ratio_pct DESC
Run this yourself

Sorted by payout ratio, ABBV sits at the top of the eight, distributing 191.9% of its earnings on a dividend yield of 2.74%. At the bottom of the same list, AAPL pays out 12.6% of earnings on a yield of 0.35%. The columns are free to disagree: a hypothetical 2% yield can sit on top of a payout ratio near 20% or near 90%, and the yield by itself never tells you which.

Why a dividend yield moves when the company does nothing

A board sets the dividend a few times a year. The price sitting in the denominator updates on every trade. When the price falls and the dividend stays put, the yield rises, and nothing at the company has changed in that moment. The same mechanic runs in reverse on the way up: a stock that rallies prints a smaller yield on an unchanged dividend.

The trace below follows Coca-Cola month by month for three years with both pieces of the fraction visible: the trailing dividend per share, and the yield that dividend produces against the month's closing price.

QueryCoca-Cola: a near-flat dividend, a moving yield, 36 months
The exact SQL behind every number
WITH monthly_close AS
(
    SELECT
        toStartOfMonth(date)           AS month_start,
        argMax(toFloat64(close), date) AS month_close
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'KO'
      AND date >= toStartOfMonth(today() - 1095)
      AND date <= today()
    GROUP BY month_start
),
ko_dividends AS
(
    SELECT
        ex_dividend_date            AS ex_date,
        any(toFloat64(cash_amount)) AS amount
    FROM global_markets.stocks_dividends
    WHERE ticker = 'KO'
      AND ex_dividend_date > today() - 1500
      AND frequency > 0
    GROUP BY id, ex_dividend_date
)
SELECT
    toString(m.month_start)                            AS month,
    formatDateTime(m.month_start, '%b %Y')             AS month_label,
    round(sum(d.amount), 4)                            AS trailing_dividend_per_share,
    round(100 * sum(d.amount) / any(m.month_close), 2) AS dividend_yield_pct
FROM monthly_close AS m
CROSS JOIN ko_dividends AS d
WHERE d.ex_date <= toLastDayOfMonth(m.month_start)
  AND d.ex_date >  toLastDayOfMonth(m.month_start) - 365
GROUP BY m.month_start
ORDER BY m.month_start
Run this yourself

The numerator barely moves. It reads $1.8 per share in Aug 2023 and $2.08 in Aug 2026, stepping up once a year at the company's own pace. The full record is in Coca-Cola's dividend history. The yield does the travelling, printing 3.01% at the start of the window and 2.37% at the end, and the shape in between is the price chart turned upside down. A payout ratio over those same three years would have updated four times a year at most, on the earnings calendar.

The crossing case: a bigger yield beside a payout ratio above 100%

Two moves push on the same dividend from opposite ends. A falling price lifts the yield with the numerator untouched. Falling earnings lift the payout ratio with the numerator untouched. When both land in the same year, one dividend looks larger on the quote screen and less covered in the accounts at the same time. That pairing is the anatomy of most dividend yield traps, compressed into two numbers.

The screen below is that crossing case, live: US-listed companies above $5 billion in market value whose dividends per share over the past year came to more than their earnings per share over the same stretch. It shows the 12 widest yields among them.

QueryWhere the two metrics cross: wide yields with payout ratios above 100%
The exact SQL behind every number
WITH latest_ratios AS
(
    SELECT
        ticker,
        argMax(toFloat64(price), date)              AS share_price,
        argMax(toFloat64(earnings_per_share), date) AS eps_ttm,
        argMax(toFloat64(market_cap), date)         AS market_value
    FROM global_markets.stocks_ratios
    WHERE date >= today() - 30
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
),
trailing_dividends AS
(
    SELECT
        ticker,
        sum(amount) AS dividend_per_share
    FROM
    (
        SELECT
            ticker,
            id,
            any(toFloat64(cash_amount)) AS amount
        FROM global_markets.stocks_dividends
        WHERE ex_dividend_date >  today() - 365
          AND ex_dividend_date <= today()
          AND frequency > 0
          AND currency = 'USD'
        GROUP BY ticker, id
    )
    GROUP BY ticker
)
SELECT
    r.ticker                                             AS ticker,
    round(100 * d.dividend_per_share / r.share_price, 2) AS dividend_yield_pct,
    round(100 * d.dividend_per_share / r.eps_ttm, 0)     AS payout_ratio_pct
FROM latest_ratios AS r
INNER JOIN trailing_dividends AS d ON d.ticker = r.ticker
WHERE r.market_value > 5000000000
  AND r.eps_ttm > 0
  AND r.share_price > 1
  AND d.dividend_per_share / r.eps_ttm > 1
  AND d.dividend_per_share / r.share_price < 0.30
ORDER BY dividend_yield_pct DESC
LIMIT 12
Run this yourself

The widest of those yields prints 14.2%, beside a payout ratio of 314%. A ratio above 100% has a plain reading: over the past year the company sent out more cash per share than it booked as accounting profit per share, with the difference covered from the balance sheet or from borrowing. That reading is not automatically a broken dividend. The next two sections cover the situations where it appears on payers that are covering the payment comfortably.

Payout ratio on earnings, or on free cash flow

Earnings are an accounting measure. Depreciation and one-off write-downs both sit inside them, and neither moves a dollar out of the bank in the quarter it is booked. Dividends are paid in cash. Measuring a cash payment against an accounting profit leaves room for the two to disagree in either direction.

The standard cross-check is free cash flow: cash generated by operations minus capital spending, the cash left after the company has paid to maintain its asset base. Our dividend cash flow coverage guide walks through that calculation. The panel below runs Coca-Cola's dividend against both denominators, one fiscal year at a time.

QueryCoca-Cola's payout ratio measured on earnings and on free cash flow
The exact SQL behind every number
SELECT
    toString(toYear(period_end))                    AS year,
    round(100 * dividends_paid / net_profit, 1)     AS payout_of_earnings_pct,
    round(100 * dividends_paid / free_cash_flow, 1) AS payout_of_free_cash_flow_pct
FROM
(
    SELECT
        period_end,
        abs(toFloat64(argMax(dividends, (filing_date, period_end))))                     AS dividends_paid,
        toFloat64(argMax(net_income, (filing_date, period_end)))                         AS net_profit,
        toFloat64(argMax(net_cash_from_operating_activities, (filing_date, period_end)))
            - abs(toFloat64(argMax(purchase_of_property_plant_and_equipment, (filing_date, period_end)))) AS free_cash_flow
    FROM global_markets.stocks_cash_flow_statements
    WHERE has(tickers, 'KO')
      AND timeframe = 'annual'
      AND period_end >= '2017-12-01'
    GROUP BY period_end
)
WHERE dividends_paid > 0
  AND net_profit > 0
  AND free_cash_flow > 0
ORDER BY period_end
Run this yourself

In fiscal 2025, the dividend absorbed 66.8% of net income and 165.8% of free cash flow. Neither line is the true payout ratio. They answer different questions: the earnings version asks how much of the reported profit the dividend consumes, and the cash version asks how much of the spendable cash it consumes. When the two lines sit close together, the company is turning reported profit into cash at roughly the rate the income statement implies.

Why REITs are measured on FFO instead of EPS

A real estate investment trust owns buildings and depreciates them on the income statement, a charge that removes no cash. It must also distribute at least 90% of taxable income to keep its tax status. Put those together and payout ratios computed on EPS routinely print above 100% for property owners whose distributions are covered several times over in cash. The industry measure is funds from operations, or FFO: net income with real estate depreciation added back and property sale gains stripped out. Our REIT payout ratio guide works through the adjustment. Running a REIT through an EPS payout formula gives a number that is arithmetically correct and economically empty.

What counts as a normal payout ratio

No single threshold survives contact with the sector table. Utilities and consumer staples carry high payout ratios on revenue that repeats, and their capital plans are built around it. Cyclical businesses such as miners and homebuilders swing with the earnings denominator, low at the top of a cycle and above 100% at the bottom, on a dividend that never changed. The eight names in the first panel span 12.6% to 191.9%, and each of those figures is ordinary for the business printing it. A payout ratio is informative next to the same company's history and its closest peers, and close to meaningless as an absolute number.

How these numbers are calculated

Dividend per share is the sum of cash dividends with an ex-dividend date in the trailing 365 days, counted once per dividend record and limited to recurring schedules, so one-time special distributions are left out. Price and earnings per share come from the latest ratios record inside the past 45 days, and that earnings figure is trailing, so every yield and payout ratio here is a trailing measure. An increase announced but not yet at its ex-date appears in none of them. Free cash flow is cash from operating activities minus purchases of property, plant and equipment, from the annual cash flow statement, using the latest filed version of each fiscal year. The screen of ratios above 100% is limited to positive earnings per share and market values above $5 billion, and it excludes symbols that vendors have reassigned between companies.

FAQ

What is the difference between dividend yield and payout ratio?

Both begin with the same dividend per share. Yield divides it by the share price, giving the cash return on today's price. Payout ratio divides it by earnings per share, giving the share of profit the dividend consumes.

Can a stock have a high dividend yield and a low payout ratio?

Yes, and the pairing turns up often in companies trading on low earnings multiples. Yield depends on price while payout ratio depends on earnings, so a depressed price with intact earnings prints a large yield beside a modest payout ratio.

Is a payout ratio above 100% always a problem?

No. It means the trailing dividend was larger than trailing earnings per share, which is routine at REITs, where depreciation depresses reported EPS, and common in years carrying a large one-time charge. The next check is coverage against free cash flow.

Which number matters more for dividend safety?

The payout ratio, read alongside a cash flow version of it. Yield is a price quote: a yield that rises on an unchanged dividend is a statement about the share price and nothing else.

What is a good payout ratio?

There is no universal figure. A level that is routine at a regulated utility would stand out at a cyclical manufacturer, so the comparison worth making is against the company's own history and its direct competitors.


Every panel here ships with the exact SQL underneath it, so any figure above can be traced to its source or re-run against a different ticker. To put the same two questions to a name you follow, what the yield is and what the payout ratio behind it looks like, ask them in plain English on the Strasmore terminal.