Earnings Per Basic Share (Historical)
Returns the historical basic earnings per share (EPS) for a company. Basic EPS is calculated using the weighted average number of common shares outstanding, without considering dilutive securities.
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
- Basic EPS excludes dilutive effects from options, warrants, convertibles
- Reported in company's local currency
- For USD-converted EPS, use
hf_Earnings_per_Basic_Share_USD() - Formula: Net Income to Common / Weighted Average Basic Shares
Examples
=hf_Earnings_per_Basic_Share("AAPL", 2023, 4)=hf_Earnings_per_Basic_Share("MSFT", "ly")=hf_Earnings_per_Basic_Share("GOOGL", 2023, , "TTM")=hf_Earnings_per_Basic_Share(A1, B1, C1)=hf_Earnings_per_Basic_Share("NVDA", "lq-1")When to Use
- Analyzing historical EPS trends
- Computing P/E ratios for specific periods
- Comparing quarterly earnings performance
- Building earnings growth models
- Historical fundamental analysis
When NOT to Use
Common Issues & FAQ
Q: What's the difference between basic and diluted EPS? A: Basic EPS uses actual shares outstanding. Diluted EPS includes potential shares from options, warrants, and convertibles, giving a more conservative view.
Q: Why is my EPS different from what's reported? A: Check the quarter/year parameters. Also verify if you need annual (omit quarter) vs quarterly data.
Q: How do I calculate annual EPS from quarterly? A: Use the TTM parameter or sum individual quarters. Annual EPS is not simply 4x one quarter's EPS.
