Category the list of tenure employees

Heera

New Member
Joined
Feb 3, 2015
Messages
20
Hi,

I have list of employees with their tenuity in number of days in column A and I need in small table that how many employees are in 00-30 days , 31-60 days , 61-90 days and above +91 days. Below the data required in table.

Please provide me the formula for each tenuity.

TenuityTotal employee count
00 - 30

<tbody>
</tbody>
31 - 60

<tbody>
</tbody>
61 - 90

<tbody>
</tbody>
90 above

<tbody>
</tbody>

<tbody>
</tbody>

<tbody>
</tbody>
thanks in advance.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Assuming agents are in column A and they tenuity in colum B I would use something like this:

=COUNTIF(B1:B10,"<"&30)
=COUNTIFS(B1:B10,">"&30,B1:B10,"<"&61)
=COUNTIFS(B1:B10,">"&60,B1:B10,"<"&91)
=COUNTIF(B1:B19,">"&90)

Hope this helps,
Christiaan
 
Upvote 0

Forum statistics

Threads
1,215,425
Messages
6,124,825
Members
449,190
Latest member
rscraig11

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