msft_dividend_net
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-09-22, from msft-stock-price-in-twd.
| year | gross_dividend_usd | after_withholding_usd | payments |
|---|---|---|---|
| 2016 | 1.47 | 1.029 | 4 |
| 2017 | 1.59 | 1.113 | 4 |
| 2018 | 1.72 | 1.204 | 4 |
| 2019 | 1.89 | 1.323 | 4 |
| 2020 | 2.09 | 1.463 | 4 |
| 2021 | 2.3 | 1.61 | 4 |
| 2022 | 2.54 | 1.778 | 4 |
| 2023 | 2.79 | 1.953 | 4 |
| 2024 | 3.08 | 2.156 | 4 |
| 2025 | 3.4 | 2.38 | 4 |
| 2026 | 2.73 | 1.911 | 3 |
- Rows × columns
- 11 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
year |
text | 11 distinct values (2016, 2017, 2018…) | |
gross_dividend_usd |
number | 1.47 to 3.4 | US dollars |
after_withholding_usd |
number | 1.029 to 2.38 | US dollars |
payments |
number | 3 to 4 |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
toString(toYear(ex_dividend_date)) AS year,
round(sum(cash_amount), 4) AS gross_dividend_usd,
round(sum(cash_amount) * 0.70, 4) AS after_withholding_usd,
count() AS payments
FROM
(
SELECT
ex_dividend_date,
any(cash_amount) AS cash_amount
FROM global_markets.stocks_dividends
WHERE ticker = 'MSFT'
AND ex_dividend_date >= '2016-01-01'
AND ex_dividend_date <= today()
GROUP BY id, ex_dividend_date
)
GROUP BY year
ORDER BY year