Method 2 – Using the IF Formula to Calculate Age on Specific Date in Excel Occasionally, someone may erroneously enter a Date of Birth that is more recent than the specific date. To correct that situation, you can use the IF function. Steps: Select the cell where you want to calculate ...
Method 1 – Using Generic Formula to Convert Date of Birth to Age in Excel In our sample database, we added two new columns, D & E called Current Date and Age. Steps: Select the E5 Enter the following formula in the Formula bar: =INT((D5-C5)/365) Press Enter. The result is ...
Drawbacks:Using this age formula in Excel produces pretty accurate results, but not flawless. Dividing by the average number of days in a year works fine most of the time, but sometimes it gets the age wrong. For example, if someone was born on February 29 and today is February 28, the...
You can also use the YEARFRAC function to calculate the age in Excel (in years) in the specified date range.Here is the formula:=INT(YEARFRAC(B1,TODAY()))The YEARFRAC function returns the number of years between the two specified dates and then the INT function returns only the integer ...
a.The steps for calculating the age (time gap) in completed months by using the DATEDIF excel function are listed as follows: Step 1:Enter the following formula in cell C2. “=DATEDIF(A2,B2,“M”)” Step 2:Press the “Enter” key. The output is 59, as shown in the following image...
To calculate age in Excel, use the DATEDIF function and TODAY. You can also use the age formula further down to calculate a person’s exact age in years, months, and days. Enter the date of birth into cell A2.
How to Calculate Current Age from Date of Birth in Excel Using YEARFRAC If you want to calculate someone’s current age from their date of birth, you need to know what is the formula for calculating their age. Quite often, the best choice is to use theYEARFRACfunction. This returns the ...
Use the formula in D4 cell to get Jon snow’s age. Formula to find the age in Excel: =INT((TODAY()-C4)/365) Explanation: TODAY()-C4calculates the no. of days between today and date of birth. We divide the number 365 to get the years between today and date of birth. INT funct...
I tried your formula and ended up with the same result of "#VALUE!" I formatted both the date of birth & date of op cells as custom "dd-mmm-yy". Excel will assume all years under '26 to be 2026, yet when I enter a 4 digit year the that is preserved. Except for the last 3...
Normally, we can calculate a person’s age based on the birth date with a formula, but, have you ever considered calculating the age of his next birthday in Excel? Which means to calculate how old he is going to be in next birthday. This article, I will talk about some formulas for ...