to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
June 2025 was another net-negative month for the dividend paying stocks of the U.S. stock market.
That's based on the dividend metadata compiled for the entire market by Standard & Poor. When we add up all the favorable year-over-year dividend actions like dividend increases, extra dividends and resumptions during the month and then subtract all the unfavorable actions, like announced dividend decreases, the resulting single number that summarizes all the dividend changes of June 2025 is -4.
That's an improvement over the much more negative result we reported for May 2025. While still negative, the underlying data points to a mixed picture for U.S. dividend paying firms. The good news is that fewer firms announced reduced dividends than last month, which was tempered by the bad news of fewer firms announcing dividend rises.
All of June 2024's favorable and unfavorable dividend actions are tallied in the following table, which shows how much they changed since June 2024 (year-over-year) and since May 2025 (month-over-month).
Dividend Changes in June 2025 | |||||
---|---|---|---|---|---|
Jun-2025 | May-2025 | MoM | Jun-2024 | YoY | |
Total Declarations | 4,970 | 4,886 | 84 ▲ | 5,293 | -323 ▼ |
Favorable | 118 | 203 | -85 ▼ | 113 | 5 ▲ |
- Increases | 60 | 130 | -70 ▼ | 74 | -14 ▼ |
- Special/Extra | 58 | 72 | -14 ▼ | 39 | 19 ▲ |
- Resumed | 0 | 1 | -1 ▼ | 0 | 0 ◀▶ |
Unfavorable | 13 | 21 | -8 ▼ | 4 | 9 ▲ |
- Decreases | 13 | 21 | -8 ▼ | 4 | 9 ▲ |
- Omitted/Passed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
The following chart tracks the monthly counts of dividend increases and decreases from January 2004 through June 2025:
The chart reveals the number of firms announcing decreased dividends in June 2025 remains well below the threshold that indicates recessionary conditions are present within the U.S. economy. However, the more-than-two-year downtrend for dividend increases shown on the chart suggests an ongoing tightening operating environment for firms, which are finding it harder to grow their dividends and, by extension, their businesses.
The next chart shows how the dividend increases and decreases reported during the just-completed 2025-Q2 compares with each of the preceding four quarters:
This chart emphasizes the year-over-year reduction in the number of dividend increases between 2024-Q2 and 2025-Q2.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 1 July 2025.
Image Credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a Wall Street bull and bear playing a casino game in which a spinning wheel with two halves, one named 'NET POSITIVE' and the other named 'NET NEGATIVE' has settled on the 'NET NEGATIVE' side", which we followed up with a second prompt: "Add a sign labeled 'DIVIDEND METADATA' above the wheel. Also make the picture more colorful."
Labels: dividends, stock market
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.