Dividends Per Basic Common Share (Historical)
Returns the historical dividends paid per basic common share during a fiscal period. This helps track dividend growth and consistency over time.
Parameters
| Parameter | Required | Description |
|---|---|---|
| Symbol | Yes | Stock ticker symbol (e.g., AAPL, MSFT) |
| Year | Yes | Fiscal year (2023) or period code (lq, ly) |
| Quarter | No | Quarter number 1-4 (default: 1) |
| TTM | No | Set to "TTM" for trailing twelve months |
Period Codes
| Code | Description |
|---|---|
lq |
Last reported quarter |
lq-1 |
One quarter ago |
ly |
Last fiscal year |
ly-1 |
Previous fiscal year |
lt |
Last twelve months (TTM) |
Notes
- Represents cash dividends paid during the period
- Based on basic (undiluted) share count
- May include regular and special dividends
- Zero for companies that don't pay dividends
Examples
=hf_Dividends_per_Basic_Common_Share("AAPL", 2023, 4)=hf_Dividends_per_Basic_Common_Share("MSFT", "ly")=hf_Dividends_per_Basic_Common_Share("JNJ", 2023, , "TTM")=hf_Dividends_per_Basic_Common_Share(A1, B1, C1)=hf_Dividends_per_Basic_Common_Share("KO", "ly-1")When to Use
- Analyzing dividend growth rates
- Building dividend income projections
- Calculating historical payout ratios
- Identifying dividend aristocrats
- Income portfolio analysis
When NOT to Use
Common Issues & FAQ
Q: Why is the value zero? A: The company either doesn't pay dividends or didn't pay during that specific period. Many growth companies don't pay dividends.
Q: How do I calculate dividend growth rate?
A: Compare across years: =(hf_Dividends_per_Basic_Common_Share("AAPL","ly") / hf_Dividends_per_Basic_Common_Share("AAPL","ly-1")) - 1
Q: Is this quarterly or annual dividends? A: Depends on parameters. With quarter specified, it's that quarter's dividend. Without quarter (or with TTM), it's the full period.
