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

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
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,214,792
Messages
6,121,612
Members
449,038
Latest member
apwr

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