Dividend Yield (TTM)
Returns the trailing twelve month (TTM) dividend yield for a stock. The dividend yield represents the annual dividend income relative to the stock's current price.
Calculation
Dividend Yield = (Annual Dividends Per Share / Stock Price) * 100Return Value
The function returns a decimal value:
- 0.025 = 2.5% yield
- 0.05 = 5% yield
- 0.10 = 10% yield
Supported Symbol Formats
| Type | Format | Example |
|---|---|---|
| US Stocks | SYMBOL | AAPL, T, VZ |
| ETFs | SYMBOL | VYM, SCHD |
| REITs | SYMBOL | O, VICI |
Notes
- Returns 0 or "NA" for non-dividend paying stocks
- TTM means it uses the last 12 months of actual dividend payments
- Does not predict future dividends
Examples
=DividendYield("AAPL")=DividendYield("T")=DividendYield("O")=DividendYield("VYM")=DividendYield(A1)=DividendYield("AAPL")*100When to Use
- Screening for income-producing stocks
- Comparing dividend yields across stocks
- Building income-focused portfolios
- Evaluating REIT and dividend ETF yields
When NOT to Use
Common Issues & FAQ
Q: Why is the yield showing as a small decimal like 0.025?
A: The yield is expressed as a decimal, not a percentage. Multiply by 100 to get the percentage: =DividendYield("AAPL")*100
Q: Why am I getting 0 or "NA"? A: The company likely does not pay dividends (e.g., growth stocks like AMZN, TSLA).
Q: Why is the yield different from what I see on financial websites? A: This is TTM (trailing twelve months). Some sites show forward yield. Also, stock price changes affect yield in real-time.
