Find number of active employees with specific skill

pan31geo

New Member
Joined
Oct 3, 2017
Messages
1
Hello,

I have a database that I need to find out per year how many employees are active with a specific skill. To help you out the format is
Column A start date within the business (2012-2017 with full date ddd/mmm/yyy)
Column B end date within the business (2012 -207 with full date ddd/mmm/yyy)
Column C skill ( for the example let's say it is red,blue,yellow)

I need to find how many are active on each year (even if I have months recorded in the database I only need the year) with each skill.

I was thinking sumifs but seems to be wrong unless I format it in the wrong way.

Any help would be greatly appreciated as it is quite an urgent need.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Something like:

=SUMPRODUCT(--(YEAR($A$2:$A$10)>=2012),--(YEAR($B$2:$B$10)>=2012),--($C$2:$C$10="red"))

which does a count for red in 2012.

Also:

=COUNTIFS(A:A,">="&DATE(2012,1,1),B:B,">="&DATE(2012,1,1),C:C,"red")
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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