Did it? Try Ford's formula using 10/31/2016 as the start date and 3/1/2017 as the end date... is that what you want to see for an answer? Just out of curiosity, what would you like to see as the answer for those two dates?Thanks all. The Datedif worked well.
=DATEDIF(A1,B1,"y") & " years, " & INT(DATEDIF(A1,B1,"yd")/7) & " weeks, " & MOD(DATEDIF(A1,B1,"yd"),7) & " days"Using Years, weeks and days would be much better.
Did it? Try Ford's formula using 10/31/2016 as the start date and 3/1/2017 as the end date... is that what you want to see for an answer? Just out of curiosity, what would you like to see as the answer for those two dates?
EDATE existed in XL2003 as long as you added the Analysis ToolPak to it via the Add-Ins dialog box (found in Tools/Add-Ins on its Menu Bar).I would expect to see 4 months and 1 day which I found this and it seems to work better. I agree, the negative number is not good.
=IF(DATEDIF(A1,B1,"y")=0,"",DATEDIF(A1,B1,"y")&" years ")&IF(DATEDIF(A1,B1,"ym")=0,"",DATEDIF(A1,B1,"ym")&" months ")&B1-EDATE(A1,DATEDIF(A1,B1,"m"))&" days"
Of course it will only work for 2007 and up as it uses the EDATE.