Calculating age in Excel can be incredibly useful for various applications, from managing employee records to tracking customer information. If you’re wondering how to calculate age in Excel in the DD/MM/YYYY format, you’re in the right place. This guide will walk you through the steps to accurately determine age based on a birth date. For more detailed insights, check out Your Age Calculator.

Understanding Date Formats in Excel
Before diving into the calculations, it’s essential to understand how Excel handles dates. Excel stores dates as serial numbers, which means that the date you see is actually a number that represents the number of days since January 1, 1900. When working with dates in the DD/MM/YYYY format, ensure that your Excel settings are configured correctly to avoid any discrepancies.
Steps to Calculate Age
Here’s a step-by-step guide on how to calculate age in Excel using the DD/MM/YYYY format:
Step 1: Enter the Birthdate
Start by entering the birthdate in a cell. For example, let’s say you enter the birthdate in cell A1 as 15/05/1990. Make sure Excel recognizes this as a date. You can format the cell by right-clicking, selecting “Format Cells,” and choosing the Date category with the DD/MM/YYYY format.
Step 2: Use the TODAY Function
In another cell, you’ll use the TODAY() function to get the current date. This function automatically updates to reflect the current date whenever you open the spreadsheet. For example, in cell B1, enter the formula:
=TODAY()
Step 3: Calculate the Age
Now, you can calculate the age using a formula that subtracts the birthdate from today’s date. In cell C1, enter the following formula:
=DATEDIF(A1, B1, "Y")
This formula calculates the difference between the two dates in years. The DATEDIF function is perfect for this purpose, as it can handle various date intervals.
Step 4: Display the Age in Years, Months, and Days (Optional)
If you want to display the age in years, months, and days, you can extend the formula. In cell D1, enter:
=DATEDIF(A1, B1, "Y") & " Years, " & DATEDIF(A1, B1, "YM") & " Months, " & DATEDIF(A1, B1, "MD") & " Days"
This will provide a more detailed age breakdown, showing how many years, months, and days old the person is.
Example
Let’s say you have the following data:
- A1:
15/05/1990 - B1:
=TODAY()(which might show18/12/2025)
Using the formulas provided:
- C1 will show
35(the age in years). - D1 will show
35 Years, 7 Months, 3 Days(the detailed breakdown).
Tips for Accuracy
To ensure your calculations are accurate:
- Always check your date format settings in Excel.
- Use the
DATEDIFfunction, as it is specifically designed to calculate the difference between dates. - If you’re sharing the spreadsheet, ensure that others have the same date format settings to avoid confusion.
Calculating age in Excel in the DD/MM/YYYY format is straightforward once you understand how to manipulate dates within the program. By following the steps outlined above, you can accurately determine age and even provide detailed information if needed. This skill can be particularly useful for businesses, educators, and anyone managing personal records. For more tips and tools, don’t forget to visit Your Age Calculator. Start using these techniques today and streamline your data management tasks!


