Employee retention 30, 60, 90, 120, 150, 180 and above

myletterboxnp

New Member
Joined
May 20, 2022
Messages
32
Office Version
  1. 365
What should be the formula for employee retention for those specific period of time as illustrated in the worksheet? TIA.
 

Attachments

  • Retention1.png
    Retention1.png
    23.1 KB · Views: 8

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Based on that data sample, what do your expected results look like?
 
Upvote 0
One easy way would be to use a helper column to count the number of days they have worked, through the current day.
Here is an example:
1718204317035.png


The formula in cell F2 is:
Excel Formula:
=IF(E2="",TODAY(),E2)-B2
and copy that down to row F8.

Then the formulas for the counts would be:

For "<=30" days:
Excel Formula:
=COUNTIFS(F$2:F$8,"<=30")

For ">30 and <=60" days:
Excel Formula:
=COUNTIFS(F$2:F$8,">30",F$2:F$8,"<60")
and all the ones below it would follow the same pattern, except for the last one.

For ">180" days:
Excel Formula:
=COUNTIFS(F$2:F$8,">180")
 
Upvote 1
Solution
Thank you so much! One last question, Is there a way to pull the names of the employees also in the column C, behind the numbers?
 
Upvote 0
Thank you so much! One last question, Is there a way to pull the names of the employees also in the column C, behind the numbers?
If you are looking for that kind of information, why not just use FILTERS, the new FILTER function, or a Pivot table?
 
Upvote 0
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,221,837
Messages
6,162,282
Members
451,759
Latest member
damav78

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