Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have dates in the format of 29-Jan-04 and need to work out the difference
from this date to another IN MONTHS e.g. 25-Sep-95 to 29-Jan-04 = how many months? Answer = 100 but need formula so i dont have to do it one by one - i have thousands to do - please help? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
With the earlier date in a1 try =DATEDIF(A1,B1,"m") datedif isn't documented in Excel so have a look here http://www.cpearson.com/excel/datedif.htm Mike "Susan" wrote: I have dates in the format of 29-Jan-04 and need to work out the difference from this date to another IN MONTHS e.g. 25-Sep-95 to 29-Jan-04 = how many months? Answer = 100 but need formula so i dont have to do it one by one - i have thousands to do - please help? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you want to see partial months (as a decimal value), you could use
=DAYS360(A1,B1)/30 To return whole months (rounding up), you could use =ROUND(DAYS360(A1,B1)/30,0) To return whole months (rounding down), you could use =TRUNC(DAYS360(A1,B1)/30) This last version gives the same results as DATEDIF, I believe. Hope this helps, Hutch "Susan" wrote: I have dates in the format of 29-Jan-04 and need to work out the difference from this date to another IN MONTHS e.g. 25-Sep-95 to 29-Jan-04 = how many months? Answer = 100 but need formula so i dont have to do it one by one - i have thousands to do - please help? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Subtracting Dates to Find the Difference in Hours | Excel Worksheet Functions | |||
Rounding UP Months' Difference between 2 dates | Excel Discussion (Misc queries) | |||
Difference between two dates in months with decimals | Excel Worksheet Functions | |||
Difference between two dates in months with decimals | Excel Worksheet Functions | |||
Difference between two dates in months with decimals | Excel Worksheet Functions |