Coca-Cola quarterly dividend since 2021: gross, net at 15%, net at 30%
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 Dividend Withholding Tax for Non-US Investors.
| ex_dividend_date | ex_date_label | gross_per_share_usd | net_at_15_pct_usd | net_at_30_pct_usd | withheld_at_30_pct_usd |
|---|---|---|---|---|---|
| 2021-03-12 | Mar 12, 2021 | 0.42 | 0.357 | 0.294 | 0.126 |
| 2021-06-14 | Jun 14, 2021 | 0.42 | 0.357 | 0.294 | 0.126 |
| 2021-09-14 | Sep 14, 2021 | 0.42 | 0.357 | 0.294 | 0.126 |
| 2021-11-30 | Nov 30, 2021 | 0.42 | 0.357 | 0.294 | 0.126 |
| 2022-03-14 | Mar 14, 2022 | 0.44 | 0.374 | 0.308 | 0.132 |
| 2022-06-14 | Jun 14, 2022 | 0.44 | 0.374 | 0.308 | 0.132 |
| 2022-09-15 | Sep 15, 2022 | 0.44 | 0.374 | 0.308 | 0.132 |
| 2022-11-30 | Nov 30, 2022 | 0.44 | 0.374 | 0.308 | 0.132 |
| 2023-03-16 | Mar 16, 2023 | 0.46 | 0.391 | 0.322 | 0.138 |
| 2023-06-15 | Jun 15, 2023 | 0.46 | 0.391 | 0.322 | 0.138 |
| 2023-09-14 | Sep 14, 2023 | 0.46 | 0.391 | 0.322 | 0.138 |
| 2023-11-30 | Nov 30, 2023 | 0.46 | 0.391 | 0.322 | 0.138 |
| 2024-03-14 | Mar 14, 2024 | 0.485 | 0.4122 | 0.3395 | 0.1455 |
| 2024-06-14 | Jun 14, 2024 | 0.485 | 0.4122 | 0.3395 | 0.1455 |
| 2024-09-13 | Sep 13, 2024 | 0.485 | 0.4122 | 0.3395 | 0.1455 |
| 2024-11-29 | Nov 29, 2024 | 0.485 | 0.4122 | 0.3395 | 0.1455 |
| 2025-03-14 | Mar 14, 2025 | 0.51 | 0.4335 | 0.357 | 0.153 |
| 2025-06-13 | Jun 13, 2025 | 0.51 | 0.4335 | 0.357 | 0.153 |
| 2025-09-15 | Sep 15, 2025 | 0.51 | 0.4335 | 0.357 | 0.153 |
| 2025-12-01 | Dec 1, 2025 | 0.51 | 0.4335 | 0.357 | 0.153 |
| 2026-03-13 | Mar 13, 2026 | 0.53 | 0.4505 | 0.371 | 0.159 |
| 2026-06-15 | Jun 15, 2026 | 0.53 | 0.4505 | 0.371 | 0.159 |
- Rows × columns
- 22 × 6
- Period covered
- to
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ex_dividend_date |
date | 2021-03-12 to 2026-06-15 | |
ex_date_label |
text | 22 distinct values (Dec 1, 2025, Jun 13, 2025, Jun 14, 2021…) | |
gross_per_share_usd |
number | 0.42 to 0.53 | US dollars |
net_at_15_pct_usd |
number | 0.357 to 0.4505 | percent |
net_at_30_pct_usd |
number | 0.294 to 0.371 | percent |
withheld_at_30_pct_usd |
number | 0.126 to 0.159 | 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
SELECT ex_dividend_date,
formatDateTime(ex_dividend_date, '%b %e, %Y') AS ex_date_label,
round(toFloat64(cash_amount), 4) AS gross_per_share_usd,
round(toFloat64(cash_amount) * 0.85, 4) AS net_at_15_pct_usd,
round(toFloat64(cash_amount) * 0.70, 4) AS net_at_30_pct_usd,
round(toFloat64(cash_amount) * 0.30, 4) AS withheld_at_30_pct_usd
FROM global_markets.stocks_dividends
WHERE ticker = 'KO'
AND distribution_type = 'recurring'
AND frequency = 4
AND cash_amount > 0
AND ex_dividend_date >= toDate('2021-01-01')
AND ex_dividend_date <= today()
ORDER BY ex_dividend_date
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 analysisDividend Withholding Tax for Non-US Investors
Latest quarterly dividend, gross and net of US withholding: eight large US payers
table 8×5
→
Six broad US funds: trailing-year distribution yield, gross and net of withholding
table 6×7
→
Median dividend yield by band, gross and net of US withholding: US payers over $1B
table 4×6
→
Share of reported KO volume marked short, by session
series 69×3
→
The 10-year Treasury yield, month by month: July 2021 to the latest reading on file
series 61×3
→
Conagra (CAG): month-end price, annualized dividend rate, and yield, 2021-08 to 2026-07
series 60×5
→
See all 2,173 queries →