Calculating age in Excel using the DD/MM/YYYY format without the DATEDIF function can seem tricky, but it’s quite simple with the right formula. By using a combination of functions like YEAR, MONTH, DAY, and TODAY, you can accurately determine someone’s age. This guide will take you through the steps to achieve this.
How to Calculate Age in Excel in DD/MM/YYYY Without DATEDIF
In this section, we’ll break down the steps to calculate age in Excel using basic functions. You’ll end up with a formula that calculates age in years based on a birthdate entered in the DD/MM/YYYY format.
Step 1: Enter the Birthdate
First, enter the birthdate in a cell (e.g., A1).
Make sure the date is in the format DD/MM/YYYY. For example, you could enter 15/08/1990. This is the starting point for your age calculation.
Step 2: Use the TODAY Function
In another cell, enter the TODAY() function to get the current date.
The TODAY function automatically updates to the current date every time you open the Excel file. This will be helpful for dynamic age calculation.
Step 3: Extract the Year, Month, and Day
Use the YEAR, MONTH, and DAY functions to extract the respective components from both the birthdate and today’s date.
For the birthdate in cell A1, you would use YEAR(A1), MONTH(A1), and DAY(A1). For today’s date, use YEAR(TODAY()), MONTH(TODAY()), and DAY(TODAY()).
Step 4: Create the Age Calculation Formula
In a new cell, combine the extracted values into a formula to calculate age.
Here’s the formula to use:=YEAR(TODAY())-YEAR(A1)-IF(OR(MONTH(TODAY())<MONTH(A1),AND(MONTH(TODAY())=MONTH(A1),DAY(TODAY())<DAY(A1))),1,0)
Step 5: Enter the Formula and Press Enter
Finally, enter the formula from Step 4 into a cell and press Enter.
This formula will calculate the age based on the birthdate you entered in Step 1 and the current date from Step 2. The IF and OR functions ensure that it accounts for whether the person has had their birthday this year.
After completing these steps, Excel will display the age in years based on the birthdate provided.
Tips for Calculating Age in Excel in DD/MM/YYYY Without DATEDIF
- Ensure date format consistency: Always use the same date format (DD/MM/YYYY) to avoid errors.
- Use parentheses wisely: Make sure to close all parentheses correctly to avoid formula errors.
- Dynamic updating: The TODAY() function ensures your age calculation updates automatically.
- Test with different dates: Check the formula with various birthdates to confirm accuracy.
- Double-check cell references: Ensure all cell references in the functions are accurate for correct results.
Frequently Asked Questions
Can I use this method for dates in MM/DD/YYYY format?
No, this method is specifically tailored for DD/MM/YYYY format. Adjust the formula for other date formats.
Do I need to update the formula every year?
No, the TODAY() function allows the formula to update automatically. You don’t need to change anything.
Can this formula calculate age in months or days?
This formula calculates age in years. To calculate age in months or days, you would need a different approach.
What if the birthdate cell is empty?
If the birthdate cell is empty, the formula will return an error. Ensure all cells have valid dates.
Is there a simpler way to calculate age?
The DATEDIF function is simpler, but it’s not available in all versions of Excel. The method described here works universally.
Summary
- Enter the birthdate in DD/MM/YYYY format.
- Use the TODAY() function to get the current date.
- Extract year, month, and day from the birthdate and current date.
- Create the age calculation formula.
- Enter the formula and press Enter.
Conclusion
Calculating age in Excel in DD/MM/YYYY format without the DATEDIF function might seem daunting, but it’s actually pretty straightforward with the right steps. By breaking down the process into manageable chunks and using Excel’s built-in functions, you can easily derive someone’s age. This method ensures dynamic updating and consistency, making it a reliable choice for your age calculation needs.
Remember, practice makes perfect. Try this method with different dates to get comfortable with the formula. If you encounter any issues, refer back to the tips and FAQs sections for additional guidance.
Ready to take your Excel skills to the next level? Dive deeper into other Excel functions and see how they can simplify your data tasks. Happy calculating!

Matt Jacobs has been working as an IT consultant for small businesses since receiving his Master’s degree in 2003. While he still does some consulting work, his primary focus now is on creating technology support content for SupportYourTech.com.
His work can be found on many websites and focuses on topics such as Microsoft Office, Apple devices, Android devices, Photoshop, and more.