Method 1 – Using INT Function to Calculate Age on a Specific Date in Excel INT((Calculating Date – Date of Birth) / 365)) [/wpsm_box] Steps: Select the cell where you want to calculate the age. Here, I selected cell E5. Enter the following formula in cell E5: =INT((D5-C5...
Simply by subtracting the birth date from the current date. This conventional age formula can also be used in Excel. Assuming a birthdate is in cell B2, the formula to calculate age in years goes as follows: =(TODAY()-B2)/365 The first part of the formula (TODAY()-B2) returns the ...
Date & Time Formula Wizard automatically builds formulas to calculate the difference between two dates, get age from date of birth, add and subtract years, months, weeks, days or even hours, minutes and seconds
The following formula calculates age in Excel using the start date in cell C5 and the end date in cell D2. The reference to the end date is made absolute to prevent the reference from changing when youcopy the formula down. =TRUNC(YEARFRAC(C5,$D$2,1)) Use Power Query to Calculate A...
We can calculate age by subtracting the birth date from the current date. Then, by using the INT function, we can display the age in complete years as follows: Select a blank cell where you want the age to be displayed, input the below formula and press the Enter key. Then, select th...
Method 1 – Using the Excel DATEDIF Function to Calculate Age in Years and Months Steps: Select cellD5. Enter the following formula: =DATEDIF(C5,$C$14,"y")&" Years "&DATEDIF(C5,$C$14,"ym")&" Months " Here, in theDATEDIFfunction, we selected cellC5asstart_date, and cellC14asend...
Type “YEAR,” and after the brackets, select the cell with the date of birth. Close the brackets and press “Enter.” The formula for this is: =(YEAR(TODAY())-YEAR(B2)) This formula finds the age in the current date. If you want to use a specific date instead, you can use the...
What to Know Enterto see your current age. The DATEDIF formula contains a cell reference for the birth date and for the current date. DATEDIF calculates the number of years, months, and days between the two dates, yielding your age. ...
The simplest and most accurate formula to calculate age in Excel is =DATEDIF(birth_date,as_of_date,"y"). This returns the number of years rounded down. Other methods, such as =INT((end-start)/365.25) or =INT(YEARFRAC(start,end)) are not 100% correct. See below for examples and an...
用excel函数计算年龄几法(HowtocalculateagebyusingExcel function) HowtocalculateagebyusingExcelfunction Source:CFANreleasetime:2009-07-02[commentstrip][anerror occurredwhileprocessingthisdirective] Ageisoftenencounteredinpersonnelmanagement,wage statisticscalculationanddateofbirthusingthesystemtime inExcel,Ihavesome...