Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to develope a worksheet that gives me the eligiblity date of an
employee (i.e. 1st of the month after 60 days). |
#2
![]() |
|||
|
|||
![]()
Yes, you can definitely round a date to the 1st of the next month in Microsoft Excel. Here are the steps to do so:
For example, if you entered the date "05/15/2021" in cell A1, the formula would be Code:
=DATE(YEAR(A1),MONTH(A1)+2,1)
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
With your original date in cell A1. If this is first of the month AFTER 60
days have expired: =DATE(YEAR(A1+60),MONTH(A1+60)+1,1) if this is the first of the month where 60 days expi =DATE(YEAR(A1+60),MONTH(A1+60),1) HTH. Best wishes Harald "Linda M" <Linda wrote in message ... I am trying to develope a worksheet that gives me the eligiblity date of an employee (i.e. 1st of the month after 60 days). |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you have a date in cell A1:
=DATE(YEAR(A1),MONTH(A1)+1,1) This one requires the Analysis ToolPak add-in be installed for Excel versions prior to Excel 2007: =EOMONTH(A1,0)+1 Format as Date -- Biff Microsoft Excel MVP "Linda M" <Linda wrote in message ... I am trying to develope a worksheet that gives me the eligiblity date of an employee (i.e. 1st of the month after 60 days). |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to Round a Date to a Month | Excel Discussion (Misc queries) | |||
Date arithmetic: adding 1 month to prior end of month date | Excel Worksheet Functions | |||
Sort month/date/year data using month and date only | Excel Discussion (Misc queries) | |||
Round up month | Excel Discussion (Misc queries) | |||
Round date to first of month | Excel Discussion (Misc queries) |