{"slug":"upcoming-ex-dividend-dates","qid":"big_names","label":"Largest companies going ex-dividend in the next 14 days: amount, pay date, indicated yield","post_title":"Upcoming Ex-Dividend Dates: Stocks This Week","post_url":"/blog/upcoming-ex-dividend-dates#q-big_names","columns":["ticker","ex_date","ex_date_label","per_share_usd","pay_date","pay_date_label","mcap_bn","indicated_yield_pct"],"rows":[{"ticker":"GOOGL","ex_date":"2026-09-04","ex_date_label":"Sep 4","per_share_usd":0.22,"pay_date":"2026-09-14","pay_date_label":"Sep 14","mcap_bn":4257,"indicated_yield_pct":0.25},{"ticker":"GOOG","ex_date":"2026-09-04","ex_date_label":"Sep 4","per_share_usd":0.22,"pay_date":"2026-09-14","pay_date_label":"Sep 14","mcap_bn":4214,"indicated_yield_pct":0.26},{"ticker":"BAC","ex_date":"2026-09-04","ex_date_label":"Sep 4","per_share_usd":0.32,"pay_date":"2026-09-25","pay_date_label":"Sep 25","mcap_bn":436,"indicated_yield_pct":2.05},{"ticker":"HD","ex_date":"2026-09-03","ex_date_label":"Sep 3","per_share_usd":2.33,"pay_date":"2026-09-17","pay_date_label":"Sep 17","mcap_bn":336,"indicated_yield_pct":2.76},{"ticker":"GS","ex_date":"2026-09-01","ex_date_label":"Sep 1","per_share_usd":5,"pay_date":"2026-09-29","pay_date_label":"Sep 29","mcap_bn":302,"indicated_yield_pct":1.93},{"ticker":"LIN","ex_date":"2026-09-03","ex_date_label":"Sep 3","per_share_usd":1.6,"pay_date":"2026-09-17","pay_date_label":"Sep 17","mcap_bn":226,"indicated_yield_pct":1.31},{"ticker":"PEP","ex_date":"2026-09-04","ex_date_label":"Sep 4","per_share_usd":1.48,"pay_date":"2026-09-30","pay_date_label":"Sep 30","mcap_bn":197,"indicated_yield_pct":4.09},{"ticker":"TMUS","ex_date":"2026-08-28","ex_date_label":"Aug 28","per_share_usd":1.02,"pay_date":"2026-09-10","pay_date_label":"Sep 10","mcap_bn":196,"indicated_yield_pct":2.23},{"ticker":"MCD","ex_date":"2026-09-01","ex_date_label":"Sep 1","per_share_usd":1.86,"pay_date":"2026-09-16","pay_date_label":"Sep 16","mcap_bn":193,"indicated_yield_pct":2.73},{"ticker":"UNP","ex_date":"2026-08-31","ex_date_label":"Aug 31","per_share_usd":1.42,"pay_date":"2026-09-30","pay_date_label":"Sep 30","mcap_bn":184,"indicated_yield_pct":1.83},{"ticker":"BLK","ex_date":"2026-09-08","ex_date_label":"Sep 8","per_share_usd":5.73,"pay_date":"2026-09-22","pay_date_label":"Sep 22","mcap_bn":182,"indicated_yield_pct":1.95},{"ticker":"ADI","ex_date":"2026-09-01","ex_date_label":"Sep 1","per_share_usd":1.1,"pay_date":"2026-09-15","pay_date_label":"Sep 15","mcap_bn":180,"indicated_yield_pct":1.19}],"shape":"series","sql":"WITH latest AS (\n    SELECT ticker, argMax(market_cap, date) AS mcap, argMax(price, date) AS px\n    FROM global_markets.stocks_ratios\n    WHERE date >= today() - 10\n    GROUP BY ticker\n)\nSELECT d.ticker AS ticker,\n       toString(d.ex_dividend_date) AS ex_date,\n       formatDateTime(d.ex_dividend_date, '%b %e') AS ex_date_label,\n       round(max(d.cash_amount), 4) AS per_share_usd,\n       toString(any(d.pay_date)) AS pay_date,\n       formatDateTime(any(d.pay_date), '%b %e') AS pay_date_label,\n       round(any(l.mcap) / 1e9, 0) AS mcap_bn,\n       round(100 * max(d.cash_amount) * max(d.frequency) / any(l.px), 2) AS indicated_yield_pct\nFROM global_markets.stocks_dividends d\nJOIN latest l ON d.ticker = l.ticker\nWHERE d.ex_dividend_date > today()\n  AND d.ex_dividend_date <= today() + 14\n  AND d.cash_amount > 0\n  AND d.distribution_type = 'recurring'\n  AND d.frequency > 0\n  AND l.mcap >= 10000000000\n  AND d.ticker NOT IN ('SPCX')\nGROUP BY d.ticker, d.ex_dividend_date\nORDER BY any(l.mcap) DESC\nLIMIT 12","computed_at":"2026-08-25T13:00:09.293672+00:00","elapsed":0.721459179}