EOMONTH Function

Written by kazamraza no comments
Classified in : Excel Formulas, Date & Time Functions Tags : none

Returns the serial number for the last day of the month that is the indicated number of months before or after start_date. Use EOMONTH to calculate maturity dates or due dates that fall on the last day of the month.

Syntax


	EOMONTH(start_date, months)

The EOMONTH function syntax has the following arguments:

  • Start_date Required. A date that represents the starting date. Dates should be entered by using the DATE function, or as results of other formulas or functions.
  • Months Required. The number of months before or after start_date. A positive value for months yields a future date; a negative value yields a past date.

Remarks

  • Microsoft Excel stores dates as sequential serial numbers so they can be used in calculations. By default, January 1, 1900 is serial number 1, and January 1, 2008 is serial number 39448 because it is 39,448 days after January 1, 1900.
  • If start_date is not a valid date, EOMONTH returns the #NUM! error value.
  • If start_date plus months yields an invalid date, EOMONTH returns the #NUM! error value.

 

 

A B C D E
1 Data Formula Result Description  
2 1-Jan-11 =EOMONTH(A2,1) 2/28/2011 Date of the last day of the month, one month after the date in A2.  
3   =EOMONTH(A2,-3) 10/31/2010 Date of the last day of the month, three months before the date in A2.  
4   =EOMONTH(A2,-1) 31/12/2010 Last day of previous month  
5   =EOMONTH(A2,-1)+1 01/01/2011 First day of selected month  
6   =EOMONTH(A2,0) 31/01/2011 Last day of selected month  
7   =EOMONTH(A2,0)+1 01/02/2011 First day of next month  
8   =EOMONTH(TODAY(),-1)+1 01/07/2020 First day of current month  

Note: After copy pasting above table in Excel format the column B as date (dd/mmm/yyyy)

.