Excel Tutorial

Excel Tutorial Shortcut Keys in Excel Formatting in Excel Notes in Excel Formats in Excel Cells and Ranges in Excel Excel Function and Formulas Conditional Formatting in Excel Data Validation in Excel Charts in Excel Excel Ribbon Toolbar Basics of Excel Spell Check in Excel Data Analysis in Excel AutoFill in Excel Goal Seek in Excel Solver in Excel Pivots Table in Excel Go-To Special function in Excel Blank cells in Excel Count Cells with Text in Excel Date and Time in Excel-VBA Dependent Drop-down List in Excel Operators in Excel Dependent Combo box in Excel VBA Error Bar in Microsoft Excel Excel Axes Excel File using Password Excel Unique Values Frequency Distribution in Excel Gauge Chart in Excel Histogram in Excel Sum Every Nth Row in Microsoft Excel SumIF Formula in Microsoft Excel Multiplication in Excel Unique Values in Excel Trendline in Excel Excel Themes Copying formula in Excel Check Marks in Excel Calculating the Last Day of the Month in Excel Calculating Age in Excel Insert Row in Excel

Functions

Excel MAX() Function Excel INT() Function Excel MOD() Function Excel ROUND() Function Excel ROUNDUP() Function Excel AVERAGE() Function Excel COUNT() Function Excel COUNTA() Function Excel COUNTBLANK() Function Excel MIN() Function Excel EDATE() Function Excel EOMONTH() Function Excel HOUR() Function Excel MINUTE() Function Excel SECOND() Function Excel TIME() Function Excel WORKDAY() Function Excel WORKDAY.INTL() Function Excel DAYS() Function Excel WEEKNUM() Function Excel WEEKDAY() Function Excel SMALL() Function Excel LARGE() Function Excel LEFT() Function Excel RIGHT() Function Excel MID() Function Excel FIND() Function Excel SEARCH() Function Excel EXACT() Function Excel SUBSTITUTE() Function Excel TEXT() Function Excel VALUE() Function Excel AND() Function Excel OR() Function Excel IFERROR() Function Excel IF() Function Excel Nested IF’s Function Excel IFNA() Function Excel COUNTIFS() Function Excel VLOOKUP() Function Excel HLOOKUP() Function Excel INDEX() Function Excel MATCH() Function Excel OFFSET () Function Averageif Function in Excel

How To

How to import Microsoft Access data into the Microsoft Excel How to use TODAY function in Excel How to Alphabetize in Excel How to remove duplicate values from excel How to lock cells in Excel How to create drop down in excel How to Delete Row in Microsoft Excel How to Highlight Duplicates Words in the Microsoft Excel How to print titles in Excel How to make use of the Wildcard in Excel How to Make Use of the F-Test in Excel How to make use of the Excel Autofit in Excel How to generate random numbers in Excel How to apply Advanced Filter in Excel How to use Index and Match in Excel

Misc

Absolute Value in Excel Adding Column in Excel Converting Units in Excel Count Characters in Excel Custom Sort Order in Excel Decimals in Excel Division in Excel Locate Maximum Values in Excel Nearest Multiple in Excel Paste Options in Excel Quarter Dates in Excel Row Difference in Excel Separate Strings in Excel Reverse List in Excel Array Formula in Excel What if Analysis Data Table in Excel Excel Shortcut Keys What is a spreadsheet in Excel?

Calculating Age in Excel

Microsoft Excel provides separate functions for various mathematical operations. Nowadays, Microsoft Excel is widely used by large and various organizations. Using formulas one can calculate the statistical functions quickly and effectively. To calculate the age in excel, Excel functions and date of birth is used. Using this function one can find the persons current age till date or given specified time.

 Here in this tutorial, let’s discuss how to calculate the age of a person using formulas.

Calculating the Age of a Person till date using Formula

To calculate the age of a person till date, enter the date of birth to find the elapsed time between the date and till now time.

STEP 1: Enter the date of birth in cell B1.

STEP 2: Enter the current date in cell B2.

Calculating Age in Excel

STEP 3: Select the cell B4 where the result wants to display and type the formula as =DATEDIF (B1, B2,”y”)

Calculating Age in Excel

The above formula won’t present default in Excel functions. To use this one has to remember this formula. There are three arguments present.

=DATEDIF (start_date, end_date, unit)

start _date: It indicates the starting date of the period.

End_date: It indicates the end date of the value.

Unit: It represents the type of result the users gets.

Calculating the today’s date from Date of Birth

To calculate the today’s date from the given date of birth, following steps are followed

STEP 1: Enter the date of birth in Cell B1.

STEP 2: Select the cell B2 and type the formula as =TODAY()

Calculating Age in Excel

Calculating the age of a person without today’s date

To calculate the age of a person without using current date, following steps are followed.

STEP 1: Enter the date of birth in cell B1.

STEP 2: Enter the formula in the cell B2 as =DATEDIF (B1, TODAY (),”y”)

Calculating Age in Excel

The current age of a person will display in the result box.

Calculating the age of a person on a particular date

To calculate the age of a person on a particular date, following steps are used.

STEP 1: Enter the date of birth in the cell B1.

STEP 2: Select the cell B2 and enter the formula as =DATEDIF(B1,DATE (2022,1,1),”y”)

Calculating Age in Excel

Calculating the age of a person based on days, month and year

To calculate the age of a person based on days, month and year following steps are followed.

STEP 1: Enter the date of birth in cell B1.

STEP 2: Select the cell B2 and enter the today’s date.

STEP 3: Select the cell B3, and enter the formula as =DATEDIF(B1,B2,”y”)&”y”& DATEDIF(B1,B2,”ym”)&”m”&DATEDIF(B1,B2,”md”)&”d”

Calculating Age in Excel
Calculating Age in Excel

From the above table in the cell B3, the age of a person is calculated in a year month and day based pattern.

 Summary

From the above tutorial, the various formulas to find the age of a person is calculated.