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

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
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,215,586
Messages
6,125,689
Members
449,250
Latest member
azur3

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