Hi there: I'm trying to get the correct amount of months, weeks, and days for a vacation rental (I don't have one....just trying figure out how to do it). I'm using the following formula, with B being start date and C being end date. The formula almost works except it's short a day, as in not counting the first day as a rental day. For example: If B is Feb.25 and C is Feb.28, the answer will show 3 days instead of 4 days. I've tried adding +1 after the last parenthesis and that works until I get a total that would have been 6 days but now shows 7 days...not upping the 'weeks' number, and zeroing the 'days' number. I've been futzing with this for a couple days now and have read many threads, but none have worked so far. Any ideas? Thanks
=DATEDIF(B23,C23,"m")&" Months,"&ROUNDDOWN(DATEDIF(B23,C23,"md")/7,0)&" Weeks,"&MOD(DATEDIF(B23,C23,"md"),7)&" Days"
Of course is someone has a simple fix for this, then maybe someone else might know how to leave the cell blank when it shows 0 months,0 weeks,0 days. Thanks again.
=DATEDIF(B23,C23,"m")&" Months,"&ROUNDDOWN(DATEDIF(B23,C23,"md")/7,0)&" Weeks,"&MOD(DATEDIF(B23,C23,"md"),7)&" Days"
Of course is someone has a simple fix for this, then maybe someone else might know how to leave the cell blank when it shows 0 months,0 weeks,0 days. Thanks again.