Conversion of Years, Months and Days into a product of Years with decimals.

Kevinlzh

New Member
Joined
Sep 21, 2017
Messages
3
Hi,

I need assistance with the converting and combining number of years, months and days into a number with decimal places.

For example i have known a friend for 32yrs, 6mths and 29 days; how do i convert an combine the duration i have known him for into a number with decimal places?

YearsMonthsDaysDesired format
3262932.57221081 yrs
2651328.45311431 yrs

<tbody>
</tbody>


Pls enlighten me.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Let's say the table in your post is in the range A1:D3
Now, we know that all years are made up of 12 months, and lets assume all years last 365 days (ignoring leap years as 1 day ain't gonna make diddly squat of difference in your decimal year!)

So, in D2 enter the following formula, then copy down column D:
= A2 + B2/12 + C2/365
Note however that this calc. produces a different result to what you show (but I don't know what math's you applied):
32.606849 vs 32.57221081 yrs
26.452283 vs 28.45311431 yrs

If you want to round the result to say two decimal places, use:
= Round( A2 + B2/12 + C2/365, 2)
 
Upvote 0
Assuming that your first row of data is in row 2 in columns A, B, and C, enter this formula in D2:
Code:
=A2+(B2/12)+(C2/365.25)

Note there might be a slight difference in the decimal portion, due to how you are handling days (how many days in a month? 30? 31?).
I went with the average of 365.25 days in a year (every 4 years there are 366).
 
Upvote 0
There's no exact answer, because a month could have 28, 29, 30, or 31 days, and you gave no starting date. Closest formula would be
=A2+B2/12+C2/365
filled down
 
Upvote 0
Closest formula would be
=A2+B2/12+C2/365
May be nitpicking, but since the examples are for large amounts of years (26, 32), I would say dividing by 365.25 would be the closest formula, as there would be at least 6 leap years in those two examples.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top