How to calculate experience from date of joining?

Asked By:
3 answer(s)
Answer # 1 #

I use Excel formula: =DATEDIF(joining_date, TODAY(), "y") & " Years " & DATEDIF(joining_date, TODAY(), "ym") & " Months" It auto-calculates experience.

[5 Month]
Answer # 2 #

Very simple: - Take your joining date and your current date. - Subtract to get years, months, days. Example: Joined 1 Jan 2020, today 23 Sep 2025 → 5 years 8 months 22 days. You can also use date calculators online.

[6 Month]
Answer # 3 #

In resumes, we usually round experience. For example, if you joined in June 2018 and it’s Sep 2025, you can write 7+ years experience. Exact months are usually not required unless for HR compliance.

[5 Month]