PEP recent dividend payments: ex-dividend date and per-share amount
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-20, from PEP Dividend: Yield, History & Ex-Dates.
| date | dividend_per_share |
|---|---|
| 2026-09-04 | 1.48 |
| 2026-06-05 | 1.48 |
| 2026-03-06 | 1.4225 |
| 2025-12-05 | 1.4225 |
| 2025-09-05 | 1.4225 |
| 2025-06-06 | 1.4225 |
| 2025-03-07 | 1.355 |
| 2024-12-06 | 1.355 |
| 2024-09-06 | 1.355 |
| 2024-06-07 | 1.355 |
- Rows × columns
- 10 × 2
- 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 |
|---|---|---|---|
date |
date | 2024-06-07 to 2026-09-04 | |
dividend_per_share |
number | 1.355 to 1.48 |
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 toDate(ex_dividend_date) AS date,
round(cash_amount, 4) AS dividend_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'PEP' AND frequency IN (1, 2, 4, 12) AND ex_dividend_date >= today() - 1100
ORDER BY ex_dividend_date DESC
LIMIT 10