Determining Current Age

BrooksTech

Board Regular
Joined
May 9, 2011
Messages
59
I keep getting 1905 or some long number when trying to use =NOW() when determining a persons current age. The data available is as follows:

AGE (At Specified Year)

YEAR (Specified Year Will be a year Between 1950 and 2011)
or
BIRTH YEAR (Either Calculated if missing or hardcoded)

I will then subtract the Birth Year from the Current Year, via =NOW(), AND also to determine age at the Specified Year do a calc subtracting Spec.Year from Birth Year. In the former, I will get a five digit number, and in the latter end up with, not a two-digit age as expected, but "1905" in every instance. All the year columns are formatted YYYY and the age column as a number with no decimal places.
 
Last edited:

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Maybe ...

Code:
      ---B--- -C-- -------------D--------------
  3   Age       36                             
  4   Year    1999                             
  5                                            
  6   Age now   48 C6: =C3 + YEAR(TODAY()) - C4
 
Upvote 0
I keep getting 1905 or some long number when trying to use =NOW() when determining a persons current age. The data available is as follows:

AGE (At Specified Year)

YEAR (Specified Year Will be a year Between 1950 and 2011)
or
BIRTH YEAR (Either Calculated if missing or hardcoded)

I will then subtract the Birth Year from the Current Year, via =NOW(), AND also to determine age at the Specified Year do a calc subtracting Spec.Year from Birth Year. In the former, I will get a five digit number, and in the latter end up with, not a two-digit age as expected, but "1905" in every instance.
I think you first have to extract the year from NOW(). NOW() returns the current date and time.

To get the current year:

=YEAR(NOW())
 
Upvote 0

Forum statistics

Threads
1,224,606
Messages
6,179,865
Members
452,948
Latest member
UsmanAli786

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