Calculate Age based on a Past Date of Service

Manny74

Board Regular
Joined
May 6, 2016
Messages
124
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
I need to calculate a customer's age based on their date of birth (for example 8/10/2017) and a past date of service (2/28/2018).
Basically, how old was each customer on 2/28/2018.
What formula would I use?


[TABLE="width: 389"]
<tbody>[TR]
[TD]A [/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]DOE, JANE[/TD]
[TD]08/10/2017[/TD]
[TD]2/28/2018[/TD]
[TD]0.6[/TD]
[/TR]
[TR]
[TD]DOE, JACK[/TD]
[TD]1/10/2017[/TD]
[TD]2/28/2018[/TD]
[TD]1.0[/TD]
[/TR]
[TR]
[TD]DOE, JILL[/TD]
[TD]1/11/2016[/TD]
[TD]2/28/2018[/TD]
[TD]2.1[/TD]
[/TR]
[TR]
[TD]DOE, JACOB[/TD]
[TD]1/11/2017[/TD]
[TD]2/28/2018[/TD]
[TD]1.1[/TD]
[/TR]
[TR]
[TD]DOE, JUDE[/TD]
[TD]10/18/2016[/TD]
[TD]2/28/2018[/TD]
[TD]1.4[/TD]
[/TR]
</tbody><colgroup><col><col><col><col></colgroup>[/TABLE]
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
You can try either of the below formulas

=DATEDIF(B2,C2,"Y")&" Years, "&DATEDIF(B2,C2,"YM")&" Months, "&DATEDIF(B2,C2,"MD")&" Days"

Or a more simple way

=(C2-B2)/365.25
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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