There are many ways you can use Excel to calculate the date at the end of the next month. One such way, using the EOMONTH function, is described in other ExcelTips. There are ways you can do it, however, without using that particular function. (Some may not want to use it because the EOMONTH function used to only be available if the Analysis Toolpak was loaded. If you couldn't count on it being loaded, it doesn't make sense to rely on the function.)
For instance, one approach is to AutoFill for the last days. Let's say you wanted the last days of a series of months in the first column, beginning at A4. All you need to do is this:
The result is that the area you drag over in step 5 is filled with end-of-month dates for the next however many months. Pretty cool! A slight variation on these steps could also be used:
If you are not an AutoFill type of person, and instead prefer to use formulas, you could enter the starting end-of-month date in cell A4 (it must be an actual end-of-month date) and then the following formula in A5:
=DATE(YEAR(A4),MONTH(A4)+2,1)-1
This formula calculates the date for the first day of the month two months in the future, and then subtracts one from it. The result is the last day of the next month. The formula wraps around the end of years just fine, since the DATE function increments the years properly if the month value provided is greater than 12.
Another formulaic approach is to use the following:
=A4+32-DAY(A4+32)
This formula works because it adds 32 to the starting date (to make sure you are past the end of the following month), and then subtracts the number of days the result is past the end of the month.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12323) applies to Microsoft Excel 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Excel here: End-of-Month Calculations.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
When working with dates, it is often helpful to be able to calculate some date in the future based on a starting date. ...
Discover MoreWhen you enter a date into a cell and you omit the year, Excel helpfully adds the current year to the date. If you want ...
Discover MoreDoing math with dates is easy in Excel. Doing math with old dates, such as those you routinely encounter in genealogy, is ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-04-24 12:25:10
Dave Bonin
My favorite way of calculating the end of a month is to use the "zeroth" day of the
month that follows.
For example, the date of April 30, 2017 can be calculated using: = DATE( 2017, 5, 0 )
One of the best things about Excel date and time processing is that both are on
a continuum. Even better, they're on the same continuum. That makes it very easy
to find a date one week before the end of a month using: = DATE( 2017, 5, -6 )
2017-04-23 04:13:06
Philip
For the first formula given, A4 can be any day of the month (doesn't have to be an end-of-month date).
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2022 Sharon Parq Associates, Inc.
Comments