Formula for Job Tenure Needed (in Months)

Kamal Subhani

Board Regular
Joined
Jan 26, 2004
Messages
146
In Cell A2 have Employee I Have Employee Name
In Cell B2 I have Employee Date of joining
In cell C2 I want ta formulas to calculate the employee Job tenure

for example in B2 i Have 16-01-1974 in cell c2 I wnatto calculate the emplyees tenure .


Regards
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
We can estimate it with something like

=INT((B1-A1)/(365/12))

which will give you the months rounded down.
 
Upvote 0
Kamal Subhani said:
In Cell A2 have Employee I Have Employee Name
In Cell B2 I have Employee Date of joining
In cell C2 I want ta formulas to calculate the employee Job tenure

for example in B2 i Have 16-01-1974 in cell c2 I wnatto calculate the emplyees tenure .


Regards

This formula calculates the number of years to current and converts to months then adds in the months that have passed in the current year. The cell must be formatted for General NOT dates.

=(YEAR(NOW())-YEAR(B1))*12+(MONTH(NOW()-B1)) This gives tenure in months (384). If you want in years and months try this.

=(YEAR(NOW())-YEAR(B1))&" YRS "&(MONTH(NOW()-B1))&" MONS "

Answer = 32 YRS 4 MONS
 
Upvote 0
I've seen this used to calculate number of days, between dates.
Copy D9 down as far as required.

Hope this works
Lotto Draw 5 and 6.xls
ABCD
8EmployeeHireDateContractDateTenure
9Employee101/Apr/200419/Apr/200419.00
Sheet1
 
Upvote 0
num complete months
=DATEDIF(E128,TODAY(),"m")

num months rounded up
=DATEDIF(E128,TODAY(),"m")+(DATEDIF(E128,TODAY(),"md")>=16)
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,038
Members
448,940
Latest member
mdusw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top