What is a formula/function to calculate age?

portsabum

New Member
Joined
Mar 2, 2002
Messages
1
I've got a worksheet that includes dates of birth for a list of customers. How can I calculate an age for each customer based on their date of birth?

_________________
This message was edited by portsabum on 2002-03-03 11:15
 

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".
On 2002-03-03 11:14, portsabum wrote:
I've got a worksheet that includes dates of birth for a list of customers. How can I calculate an age for each customer based on their date of birth?

_________________
This message was edited by portsabum on 2002-03-03 11:15

If you had the birthday in A1 put =TODAY() in B1.
In C1 put =B1-A1

Format C1 using Custom:

yy" Years "mm" Months "dd"Days"
 
Upvote 0
> I've got a worksheet that includes dates of birth for a list of customers. How can I calculate an age for each customer based on their date of birth?

Use one of:

=DATEDIF(A1,TODAY(),"y")

=YEARFRAC(TODAY(),A1)

=DATEDIF(A1,TODAY(),"y")&" years, "&DATEDIF(A1,TODAY(),"ym")&" months, "&DATEDIF(A1,TODAY(),"md")&" days"

where A1 houses a birth date.

Did you know that you could have found the answer by using the 'Search' facilty on this board?
This message was edited by Aladin Akyurek on 2002-03-03 11:26
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,019
Members
448,938
Latest member
Aaliya13

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