declarations
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-09-26, from acn-dividend-history.
| ex_date_iso | ex_label | declared_on | record_on | paid_on | amount_usd |
|---|---|---|---|---|---|
| 2026-07-09 | Jul 9, 2026 | Jun 17, 2026 | Jul 9, 2026 | Aug 14, 2026 | 1.63 |
| 2026-04-09 | Apr 9, 2026 | Mar 19, 2026 | Apr 9, 2026 | May 15, 2026 | 1.63 |
| 2026-01-13 | Jan 13, 2026 | Dec 18, 2025 | Jan 13, 2026 | Feb 13, 2026 | 1.63 |
| 2025-10-10 | Oct 10, 2025 | Sep 25, 2025 | Oct 10, 2025 | Nov 14, 2025 | 1.63 |
| 2025-07-10 | Jul 10, 2025 | Jun 13, 2025 | Jul 10, 2025 | Aug 15, 2025 | 1.48 |
| 2025-04-10 | Apr 10, 2025 | Mar 20, 2025 | Apr 10, 2025 | May 15, 2025 | 1.48 |
| 2025-01-16 | Jan 16, 2025 | Nov 19, 2024 | Jan 16, 2025 | Feb 14, 2025 | 1.48 |
| 2024-10-10 | Oct 10, 2024 | Sep 26, 2024 | Oct 10, 2024 | Nov 15, 2024 | 1.48 |
| 2024-07-11 | Jul 11, 2024 | Jun 20, 2024 | Jul 11, 2024 | Aug 15, 2024 | 1.29 |
| 2024-04-10 | Apr 10, 2024 | Mar 21, 2024 | Apr 11, 2024 | May 15, 2024 | 1.29 |
| 2024-01-17 | Jan 17, 2024 | Nov 15, 2023 | Jan 18, 2024 | Feb 15, 2024 | 1.29 |
| 2023-10-11 | Oct 11, 2023 | Sep 28, 2023 | Oct 12, 2023 | Nov 15, 2023 | 1.29 |
| 2023-07-12 | Jul 12, 2023 | May 15, 2023 | Jul 13, 2023 | Aug 15, 2023 | 1.12 |
| 2023-04-12 | Apr 12, 2023 | Mar 23, 2023 | Apr 13, 2023 | May 15, 2023 | 1.12 |
- Rows × columns
- 14 × 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_date_iso |
date | 2023-04-12 to 2026-07-09 | |
ex_label |
text | 14 distinct values (Apr 10, 2024, Apr 10, 2025, Apr 12, 2023…) | |
declared_on |
text | 14 distinct values (Dec 18, 2025, Jun 13, 2025, Jun 17, 2026…) | |
record_on |
text | 14 distinct values (Apr 10, 2025, Apr 11, 2024, Apr 13, 2023…) | |
paid_on |
text | 14 distinct values (Aug 14, 2026, Aug 15, 2023, Aug 15, 2024…) | |
amount_usd |
number | 1.12 to 1.63 | US dollars |
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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
toString(ex_date) AS ex_date_iso,
formatDateTime(ex_date, '%b %e, %Y') AS ex_label,
if(declared > toDate('2000-01-01'),
formatDateTime(declared, '%b %e, %Y'), 'not reported') AS declared_on,
if(recorded > toDate('2000-01-01'),
formatDateTime(recorded, '%b %e, %Y'), 'not reported') AS record_on,
if(paid > toDate('2000-01-01'),
formatDateTime(paid, '%b %e, %Y'), 'not reported') AS paid_on,
round(amount, 2) AS amount_usd
FROM
(
SELECT
ex_dividend_date AS ex_date,
ifNull(any(declaration_date), toDate('1970-01-01')) AS declared,
ifNull(any(record_date), toDate('1970-01-01')) AS recorded,
ifNull(any(pay_date), toDate('1970-01-01')) AS paid,
toFloat64(any(cash_amount)) AS amount
FROM global_markets.stocks_dividends
WHERE ticker = 'ACN'
AND cash_amount > 0
AND ex_dividend_date <= today()
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date DESC
LIMIT 14
)
ORDER BY ex_date DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.