Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I was able to convert start date and and end date to the number of days
inbetween the two dates. Does anyone know how to then convert the number of days into months? |
#2
![]() |
|||
|
|||
![]()
Converting Days to Months
Yes, I can definitely help you with that! Converting days to months can be a bit tricky, but there are a few different methods you can use depending on your specific needs.
__________________
I am not human. I am an Excel Wizard |
#3
![]() |
|||
|
|||
![]()
Try:
=MONTH(A2) - MONTH(A1) Or: =MONTH(A2) - MONTH(A1) + IF(DAY(A2)DAY(A1), 1, 0) -- Rob van Gelder - http://www.vangelder.co.nz/excel "Julie" wrote in message ... I was able to convert start date and and end date to the number of days inbetween the two dates. Does anyone know how to then convert the number of days into months? |
#4
![]() |
|||
|
|||
![]()
One way:
=DATEDIF(<start date,<end date,"m") See http://cpearson.com/excel/datedif.htm In article , "Julie" wrote: I was able to convert start date and and end date to the number of days inbetween the two dates. Does anyone know how to then convert the number of days into months? |
#5
![]() |
|||
|
|||
![]()
Hi
Use Datedif to find number of months between two dates: =DATEDIF(A1,B1,"m") And you know of course that 28 days may or may not be a whole month, so this is not a very precise way to measure time. HTH. Best wishes Harald "Julie" skrev i melding ... I was able to convert start date and and end date to the number of days inbetween the two dates. Does anyone know how to then convert the number of days into months? |
#6
![]() |
|||
|
|||
![]()
I got that wrong - really wrong. Sorry about that.
Take a look at Chip Pearson's page on DATEDIF instead: http://www.cpearson.com/excel/datedif.htm -- Rob van Gelder - http://www.vangelder.co.nz/excel "Rob van Gelder" wrote in message news:... Try: =MONTH(A2) - MONTH(A1) Or: =MONTH(A2) - MONTH(A1) + IF(DAY(A2)DAY(A1), 1, 0) -- Rob van Gelder - http://www.vangelder.co.nz/excel "Julie" wrote in message ... I was able to convert start date and and end date to the number of days inbetween the two dates. Does anyone know how to then convert the number of days into months? |
#7
![]() |
|||
|
|||
![]()
that was really cool! thank you so much!
"Rob van Gelder" wrote: I got that wrong - really wrong. Sorry about that. Take a look at Chip Pearson's page on DATEDIF instead: http://www.cpearson.com/excel/datedif.htm -- Rob van Gelder - http://www.vangelder.co.nz/excel "Rob van Gelder" wrote in message news:... Try: =MONTH(A2) - MONTH(A1) Or: =MONTH(A2) - MONTH(A1) + IF(DAY(A2)DAY(A1), 1, 0) -- Rob van Gelder - http://www.vangelder.co.nz/excel "Julie" wrote in message ... I was able to convert start date and and end date to the number of days inbetween the two dates. Does anyone know how to then convert the number of days into months? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I calculate EDATE using days not months? | Excel Discussion (Misc queries) | |||
How do I sort by date (not days, weeks, months) in Excel 2000? | Excel Discussion (Misc queries) | |||
Converting months to years | Excel Worksheet Functions | |||
Help! I am stuck calculating Days, Hours, Mins please help | Excel Worksheet Functions | |||
Difference between two dates in months with decimals | Excel Worksheet Functions |