EOMONTH Function is Flakey

Written by Allen Wyatt (last updated September 23, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


1

Joe uses the EOMONTH function quite frequently, but since he moved up to Excel 2007, he has had problems. Joe has the Analysis ToolPak active and the EOMONTH function works, at first. However, when he saves his workbook and opens it later, the cells containing the EOMONTH function look fine until you click on them. Then the formula bar shows #N/A. The formula has disappeared. Analysis ToolPak is still active when this happens. This does not happen on every occasion, but it is too frequent to ignore. Also, Joe has a colleague who is experiencing the same problem with his workbooks.

This problem with EOMONTH apparently occurs because of changes made in the EOMONTH function in later versions of Excel (Excel 2007 and later). In earlier versions of Excel (Excel 2003 and before) EOMONTH was part of the Analysis ToolPak. In the later versions of Excel, the ToolPak is no longer required; the function is part of Excel itself. In other words, you don't need to have the Analysis ToolPak activated in order to use EOMONTH.

This leads to the problem. If you have a workbook created in an earlier version of Excel and you open it using the compatibility mode in a later version of Excel, the workbook formulas are evaluated and, under some circumstances, the internal "tokens" used for functions are updated. When the workbook is saved and back out of, the updated token is stored in the workbook and, when the workbook is reloaded, the token now points to what Excel interprets as an invalid function.

Microsoft hasn't posted anything in their Knowledge Base about this error as of yet. The problem seems to be intermittent (as Joe noted), affecting a workbook only after it has gone through between four and eight open/edit/save cycles.

The solution is to open the workbook and, if the problem is not manifested, use Save As to save the workbook in native Excel format. (Well, in the Excel format native to Excel 2007 through later versions of Excel.) Since compatibility mode is not involved from that point on, the problem should not occur again. If the problem is manifested, then you will need to correct and rebuild the workbook.

If it is not possible for you to save the workbook in Excel's current native format (perhaps you need to use the older Excel format in order to work with others who have not updated their program), then you should consider not relying on the EOMONTH function. Instead, use a formula such as either of the following:

=A1+31-DAY(A1+31)
=DATE(YEAR(A1),MONTH(A1)+1,1)-1

If you prefer, you can create your own user-defined function to calculate the last day of a month. The following is one approach:

Function LastOfMonth(Any_Date As Date) As Date
    ' Returns the date of the last day of
    ' the month of the passed date argument

    LastOfMonth = DateAdd("d", -1, _
      DateAdd("m", 1, Month(Any_Date) _
      & "/1/" & Year(Any_Date)))
End Function

You'll want to make sure that you pass the function a valid date, either by referencing a date in a cell or by enclosing a literal date within quote marks. Assuming cell B7 contains the date 10/15/18, both of the following will return the same result:

=LastOfMonth(B7)
=LastOfMonth("10/15/2018")

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (6613) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Problems Using the Footnote Pane

When working with footnotes in Draft view, you rely on the use of the footnote pane. However, the pane doesn't work ...

Discover More

Plain Text Pasting as the Default

Pasting 'plain text' into a document is one of the most common ways of pasting information. Wouldn't it be great if this ...

Discover More

Missing Bounds Options for a Chart

When your chart contains dates along one axis, you can set bounds on the way the chart is displayed. What causes, though, ...

Discover More

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!

More ExcelTips (ribbon)

Understanding the VLOOKUP Function

Functions are at the heart of Excel's power in working with data. One of the most misunderstood functions provided by ...

Discover More

Nesting IF Worksheet Functions

The IF worksheet function is very handy to make conditional evaluations. You are not limited to a single IF comparison, ...

Discover More

Calculating the Day of the Year

Need to know what day of the year a certain date is? You can figure it out easily using the formulas in this tip.

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 6 + 5?

2022-09-23 10:49:28

Dave Bonin

Personally, I've always liked the formula
      = DATE( YEAR( A1 ), MONTH( A1 ) + 1, 0 )

It's elegantly simple as the zeroth day of a month is the last day of the prior month.

It also doesn't depend on my end users having the Analysis ToolPak enabled. I never understood why Excel didn't make all of its functions always available as the ToolPak isn't that big.


This Site

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.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.