Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to create a formula that converts years into years and days.
For example, turn 7.65 years to text that reads: 7 years, 237 days. I want the formula to round the days to the nearest whole number. I am VERY new at Excel, so please provide explicit instructions. Thanks in advance for your help! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For normal years:
=INT(A1)&" yrs "&ROUND((A1-INT(A1))*365,0) & " days" For Leap Years: =INT(A1)&" yrs "&ROUND((A1-INT(A1))*366,0) & " days" -- Gary''s Student "Kimmie B" wrote: I want to create a formula that converts years into years and days. For example, turn 7.65 years to text that reads: 7 years, 237 days. I want the formula to round the days to the nearest whole number. I am VERY new at Excel, so please provide explicit instructions. Thanks in advance for your help! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're an angel. Thank you.
"Gary''s Student" wrote: For normal years: =INT(A1)&" yrs "&ROUND((A1-INT(A1))*365,0) & " days" For Leap Years: =INT(A1)&" yrs "&ROUND((A1-INT(A1))*366,0) & " days" -- Gary''s Student "Kimmie B" wrote: I want to create a formula that converts years into years and days. For example, turn 7.65 years to text that reads: 7 years, 237 days. I want the formula to round the days to the nearest whole number. I am VERY new at Excel, so please provide explicit instructions. Thanks in advance for your help! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You are very welcome
-- Gary''s Student "Kimmie B" wrote: You're an angel. Thank you. "Gary''s Student" wrote: For normal years: =INT(A1)&" yrs "&ROUND((A1-INT(A1))*365,0) & " days" For Leap Years: =INT(A1)&" yrs "&ROUND((A1-INT(A1))*366,0) & " days" -- Gary''s Student "Kimmie B" wrote: I want to create a formula that converts years into years and days. For example, turn 7.65 years to text that reads: 7 years, 237 days. I want the formula to round the days to the nearest whole number. I am VERY new at Excel, so please provide explicit instructions. Thanks in advance for your help! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
convert Days to Years, Months, Days | Excel Discussion (Misc queries) | |||
how do I convert a number to number of years, months and days | Excel Worksheet Functions | |||
Converting number of days to years and months | Excel Worksheet Functions | |||
Convert # of days to years/days | Excel Discussion (Misc queries) | |||
difference between two dates in years, months and days. | Excel Worksheet Functions |