The EOMONTH function is used to return the serial number value for the last day of any particular month, past, present, or future. The syntax for the function is as follows:
=EOMONTH(base, offset)
The base value is a date from which the function should do its calculations, and the offset is a number that indicates how many months from the base date should be used. For instance, an offset of 0 would indicate that EOMONTH should return the last day of the month represented in base, whereas an offset of 4 would be four months after base, and –2 would be two months before.
As an example, the following are typical uses of EOMONTH. The first line can be used to return the last day of the current month, and the second line returns the last day of the month six months later than the date in A1:
=EOMONTH(NOW(),0) =EOMONTH(A1,6)
Remember that EOMONTH returns a serial number. Excel does not automatically format the serial number as a date. In other words, you will need to explicitly format the cell as a date.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12156) 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: Using the EOMONTH Function.
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!
Want to figure a date a certain number of months in the future or past? The EDATE function may be just what you need for ...
Discover MoreWhen working with text in a formula, you may need to extract the left-most characters from a string of text or from a ...
Discover MoreThe PROPER worksheet function is used to change the case of text so that the first letter of each word is capitalized. If ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2020-08-21 10:20:08
J. Woolley
@Lee McIntyre
Put this in A1:
=TODAY()
2020-08-20 16:14:48
Lee McIntyre
Question: Today, 8/20/2020, I entered the example formula in a cell -- =EOMONTH(A1,6) -- and formatted the cell as a date. I expected 2/28/2021. Instead I got 7/31/1900. Any idea why?
2016-12-28 17:32:50
Alex B
Thanks Michael.
2016-12-27 08:43:08
Clas Henrik Ericsson
Want to know what is the last date on a Monday,Tuesday etcetera in a certain month?
EOMONTH(B2;0)-(MOD((EOMONTH(B2;0)-B2)/7;1)*7)
B2 = any date representing Mon,Tues,etcetera
Weekday col B Date Last date in month with weekday in Col B
5 2016-01-01 2016-01-29
6 2016-01-02 2016-01-30
7 2016-01-03 2016-01-31
1 2016-01-04 2016-01-25
2 2016-01-05 2016-01-26
3 2016-01-06 2016-01-27
4 2016-01-07 2016-01-28
5 2016-01-08 2016-01-29
6 2016-01-09 2016-01-30
7 2016-01-10 2016-01-31
2016-12-27 06:00:32
Michael (Micky) Avidan
@Alex B,
The following is a "biy" shorter:
=NOW()-DAY(NOW())+1
--------------------------
Michael (Micky) Avidan
“Microsoft®” MVP – Excel (2009-2017)
ISRAEL
2016-12-26 06:00:47
Alex B
In my browser 2 months before is showing as "?2", this should show as "-2" (both without the quotes).
EOMonth, is also a quick way of getting the 1st day of a month, ie for the 1st day of the current month =EOMONTH(NOW(),-1)+1.
In other words, get the last day of the previous month (-1) and add 1 day.
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 © 2021 Sharon Parq Associates, Inc.
Comments