how to convert number of days to months

  • Thread starter Thread starter Jon
  • Start date Start date
J

Jon

Greeting,

I have 63 days, the Question is How to convert it to 2 months and 3 days??

Thank You
 
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")
 
Assuming your date is in A1...

=TRUNC(A1/30,0)&" Months and "&MOD(A1,30)&" days"
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top