![]() |
how to convert number of days to months
Greeting,
I have 63 days, the Question is How to convert it to 2 months and 3 days?? Thank You |
how to convert number of days to months
Assuming your 63 days is in cell A1, the following formula in B1 will do the
trick: =IF(A1<30,A1&" days",INT(A1/30)&" months and "&MOD(A1,30)&" days") -- Kevin Backmann "Jon" wrote: Greeting, I have 63 days, the Question is How to convert it to 2 months and 3 days?? Thank You |
how to convert number of days to months
Assuming your date is in A1...
=TRUNC(A1/30,0)&" Months and "&MOD(A1,30)&" days" On May 23, 9:22 am, Jon wrote: Greeting, I have 63 days, the Question is How to convert it to 2 months and 3 days?? Thank You |
how to convert number of days to months
However, it's very rare for two consecutive months ever to total 60 days.
I'm not intending to belabor the obvious -- just wondering if that's really what you want to do. "Jon" wrote: Greeting, I have 63 days, the Question is How to convert it to 2 months and 3 days?? Thank You |
Quote:
|
All times are GMT +1. The time now is 11:28 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com