Analysts expect Mcdonalds Corp to report revenue of 7.64 B for Q3 26, against a range of 7.01 B to 8.26 B. The most recent reported quarter, Q2 26, came in at 7.10 B, a 5.4% beat against the 6.73 B consensus.
| Metric | Q3 24 | Q4 24 | Q1 25 | Q2 25 | Q3 25 | Q4 25 | Q1 26 | Q2 26 | Q3 26 | Q4 26 | Q1 27 | Q2 27 | Q3 27 | Q4 27 | Q1 28 | Q2 28 | Q3 28 | Q4 28 | Q1 29 | Q2 29 | Q3 29 | Q4 29 | Q1 30 | Q2 30 | Q3 30 | Q4 30 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Reported (Actual) | 6.87 B | 6.39 B | 5.96 B | 6.84 B | 7.08 B | 7.01 B | 6.52 B | 7.10 B | - | - | - | - | - | - | - | - | ||||||||||
| High Estimate | 6.67 B | 6.43 B | 6.24 B | 7.54 B | 7.45 B | 7.81 B | 7.11 B | 7.08 B | 8.26 B | 8.08 B | 6.90 B | 7.88 B | 8.20 B | 7.64 B | 7.99 B | 8.86 B | ||||||||||
| Low Estimate | 6.24 B | 5.80 B | 5.71 B | 6.38 B | 6.38 B | 6.57 B | 6.63 B | 6.38 B | 7.01 B | 7.41 B | 6.37 B | 6.61 B | 7.51 B | 7.06 B | 6.92 B | 7.56 B | ||||||||||
| Consensus Estimate | 6.45 B | 6.12 B | 5.98 B | 6.96 B | 6.92 B | 7.19 B | 6.87 B | 6.73 B | 7.64 B | 7.74 B | 6.63 B | 7.25 B | 7.85 B | 7.35 B | 7.46 B | 8.21 B |
Analysts expect Mcdonalds Corp to report earnings per share of 3.32 for Q3 26, against a range of 3.21 to 3.43. The most recent reported quarter, Q2 26, came in at 3.38, a 7.3% beat against the 3.15 consensus.
| Metric | Q3 24 | Q4 24 | Q1 25 | Q2 25 | Q3 25 | Q4 25 | Q1 26 | Q2 26 | Q3 26 | Q4 26 | Q1 27 | Q2 27 | Q3 27 | Q4 27 | Q1 28 | Q2 28 | Q3 28 | Q4 28 | Q1 29 | Q2 29 | Q3 29 | Q4 29 | Q1 30 | Q2 30 | Q3 30 | Q4 30 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Reported (Actual) | 3.23 | 2.83 | 2.67 | 3.19 | 3.22 | 3.12 | 2.83 | 3.38 | - | - | - | - | - | - | - | - | ||||||||||
| High Estimate | 3.21 | 3.14 | 2.75 | 3.49 | 3.76 | 3.50 | 3.19 | 3.44 | 3.43 | 3.31 | 3.34 | 3.60 | 3.65 | 3.97 | 3.37 | 4.00 | ||||||||||
| Low Estimate | 2.87 | 2.74 | 2.31 | 3.21 | 3.12 | 2.88 | 2.65 | 2.86 | 3.21 | 2.93 | 3.10 | 3.24 | 3.35 | 3.47 | 2.89 | 3.46 | ||||||||||
| Consensus Estimate | 3.04 | 2.94 | 2.53 | 3.35 | 3.44 | 3.19 | 2.92 | 3.15 | 3.32 | 3.12 | 3.22 | 3.42 | 3.50 | 3.72 | 3.13 | 3.73 |
Pull Wall Street consensus for Mcdonalds Corp (high, low and consensus estimates alongside reported actuals) into your own models and apps with the Business Quant Estimates API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/estimates?ticker=MCD&mode=revenue&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/estimates"
params = {"ticker": "MCD", "mode": "revenue", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/estimates?ticker=MCD&mode=revenue&api_key=YOUR_API_KEY");
const data = await res.json();