![]() |
Month (datedif) to 1 decimal
Hello! Is there a way to calc the # of months between dates to 1 decimal
place? Other than taking the difference between 2 dates and dividing by 30. Thanks! |
Month (datedif) to 1 decimal
DATEDIF can calculate the number of whole months, like so
=DATEDIF(A21,B21,"M") there is no way that I now of to get to one decimal place because of the different number of days in each month the algorithm is somewhat tricky. You could do an approximation with =DATEDIF(A21,B21,"YM")+DATEDIF(A21,B21,"MD")/30 which is a little better than (B21-A21)/30 -- HTH Bob Phillips (remove nothere from email address if mailing direct) "jennifer" wrote in message ... Hello! Is there a way to calc the # of months between dates to 1 decimal place? Other than taking the difference between 2 dates and dividing by 30. Thanks! |
Month (datedif) to 1 decimal
Hi Jennifer,
Try this =YEARFRAC(C8,G8)*12 C8 and G8 being the cells with the two dates. Format cell to 1 decimal place as required. -- Creator "jennifer" wrote: Hello! Is there a way to calc the # of months between dates to 1 decimal place? Other than taking the difference between 2 dates and dividing by 30. Thanks! |
Thanks! Month (datedif) to 1 decimal
Bob & Creator - Thanks!
"jennifer" wrote: Hello! Is there a way to calc the # of months between dates to 1 decimal place? Other than taking the difference between 2 dates and dividing by 30. Thanks! |
All times are GMT +1. The time now is 10:58 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com