Dividend Pay Date
Returns the dividend payment date for a stock. This is the date when the company actually distributes the dividend payment to eligible shareholders.
Dividend Timeline
| Event | Description |
|---|---|
| Declaration Date | Company announces dividend |
| Ex-Dividend Date | Stock trades without dividend |
| Record Date | Must be shareholder by this date |
| Payment Date | Dividend is paid (this function) |
Supported Symbol Formats
| Type | Format | Example |
|---|---|---|
| US Stocks | SYMBOL | AAPL, MSFT |
| ETFs | SYMBOL | SPY, VYM |
Notes
- Returns "NA" if the company does not pay dividends
- Returns "NA" if the payment date has not been announced
Examples
=DividendPayDate("AAPL")=DividendPayDate("MSFT")=DividendPayDate("JNJ")=DividendPayDate("KO")=DividendPayDate(A1)When to Use
- Planning cash flow from dividend investments
- Tracking when dividends will be received
- Building dividend income calendars
- Portfolio income forecasting
When NOT to Use
| Scenario | Use Instead |
|---|---|
| Need ex-dividend date | Ex_DividendDate() |
| Need dividend declaration date | DividendDate() |
| Need dividend yield | DividendYield() |
| Need dividend amount | DividendRate() |
Common Issues & FAQ
Q: Why am I getting "NA"? A: The company either:
- Does not pay dividends
- Has not announced the next payment date
- Symbol may be incorrect
Q: How far in advance is the payment date known? A: Typically announced at the same time as the dividend declaration, usually a few weeks to a month before the ex-dividend date.
