How to calculate experience from date of joining?
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.
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.