ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   conversion question (https://www.excelbanter.com/excel-programming/362124-conversion-question.html)

Tammi P

conversion question
 
is there a formula to convert 5.08 into years/months? I know 5 = 5 years,
but can't figure out how to determine what .08 is. Thanks

JMB

conversion question
 
Maybe
=INT(A1)&" Years "&ROUND(MOD(A1,1)*12,2)&" Months"
where A1 = 5.08

which is 0.96. If you have specific start/end dates, you may want to look
at DateDif. Whether or not 0.08 of a year is one month depends on which
month you're talking about.


"Tammi P" wrote:

is there a formula to convert 5.08 into years/months? I know 5 = 5 years,
but can't figure out how to determine what .08 is. Thanks


KellTainer

conversion question
 

Hi,

Assuming your data is in A1 and that 0.08 is a decimal representation

B1 = DATE(2000+FLOOR(A1,1),1,MOD(A1,1)*365)

You could use the data at this point by custom formatting it,

or you could add two more cells with
=MONTH(B1)
=YEAR(B1)

and custom format them. Either way, it will work.


--
KellTainer
------------------------------------------------------------------------
KellTainer's Profile: http://www.excelforum.com/member.php...o&userid=34322
View this thread: http://www.excelforum.com/showthread...hreadid=544500


Tammi P[_2_]

conversion question
 
Thank you! I will see if there are specific start/end dates - although I'm
not sure how to use the DateDif - so I may post again.

"JMB" wrote:

Maybe
=INT(A1)&" Years "&ROUND(MOD(A1,1)*12,2)&" Months"
where A1 = 5.08

which is 0.96. If you have specific start/end dates, you may want to look
at DateDif. Whether or not 0.08 of a year is one month depends on which
month you're talking about.


"Tammi P" wrote:

is there a formula to convert 5.08 into years/months? I know 5 = 5 years,
but can't figure out how to determine what .08 is. Thanks


JMB

conversion question
 
You're welcome.

"Tammi P" wrote:

Thank you! I will see if there are specific start/end dates - although I'm
not sure how to use the DateDif - so I may post again.

"JMB" wrote:

Maybe
=INT(A1)&" Years "&ROUND(MOD(A1,1)*12,2)&" Months"
where A1 = 5.08

which is 0.96. If you have specific start/end dates, you may want to look
at DateDif. Whether or not 0.08 of a year is one month depends on which
month you're talking about.


"Tammi P" wrote:

is there a formula to convert 5.08 into years/months? I know 5 = 5 years,
but can't figure out how to determine what .08 is. Thanks



All times are GMT +1. The time now is 06:18 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com