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
September 2025 was a disappointing month for dividend investors in the U.S. stock market. For the eighth month in a row, the net outcome of favorable and unfavorable changes among dividend paying stocks was negative.
That's what we find after adding up all the favorable year-over-year dividend actions like dividend increases, extra dividends and resumptions during September 2025 and then subtracting all the unfavorable actions, like announced dividend decreases. The result of that math is a single number that summarizes all the dividend changes during the month, which for September 2025, produced a value of -46.
This outcome resulted from two factors. First, there was a year-over-year increase in obviously unfavorable dividend changes with September 2025 having 17 dividend decreases announced during the month, an increase of eight over September 2024's total of 9 firms announcing reduced dividend payments.
The second factor is less obvious but had a bigger impact. The number of firms announcing favorable dividend increases dropped from a total of 136 in September 2024 to just 98 in September 2025. That reduction of 38 dividend increases pulled the number of net dividend changes well into negative territory as bearish factors in the market figuratively intercepted a substantial number of potential dividend hikes.
September 2025's favorable and unfavorable dividend actions are tallied in the following table, which reveals how much they changed since September 2024 (year-over-year) and since August 2025 (month-over-month).
Dividend Changes in September 2025 | |||||
---|---|---|---|---|---|
Sep-2025 | Aug-2025 | MoM | Sep-2024 | YoY | |
Total Declarations | 4,781 | 4,498 | 283 ▲ | 4,603 | 178 ▲ |
Favorable | 98 | 174 | -76 ▼ | 136 | -38 ▼ |
- Increases | 54 | 113 | -59 ▼ | 89 | -35 ▼ |
- Special/Extra | 44 | 61 | -17 ▼ | 47 | -3 ▼ |
- Resumed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
Unfavorable | 17 | 13 | 4 ▲ | 9 | 8 ▲ |
- Decreases | 17 | 13 | 4 ▲ | 9 | 8 ▲ |
- Omitted/Passed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
The following chart tracks the monthly counts of dividend increases and decreases from January 2004 through September 2025:
The good news is the number of dividend decreases remains well below the threshold that indicates outright recessionary conditions are present within the U.S. economy. The bad news is the number of dividend increases has dropped to a level that indicates many publicly-traded companies in the U.S. are facing substantial headwinds. Whether that might turn into recessionary conditions is a reason to keep paying close attention to these near-real time economic indicators.
The next chart visualizes how the dividend increases and decreases reported during 2025-Q3 compare with each of the preceding four quarters:
This chart underscores the curious state of the U.S. stock market's dividends, in which dividend increases have fallen off considerably since the first quarter of 2025, while the number of dividend decreases has been relatively steady, falling within a comparatively narrow range.
Will that pattern continue in the next month and quarter? Stay tuned!
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 1 October 2025.
Image Credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a Wall Street bull and a bear who are playing football and the bear intercepts a pass for a ball that says DIVIDEND HIKES".
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.