Count total number of Applicants for a specific job position within a given date range.

myletterboxnp

New Member
Joined
May 20, 2022
Messages
28
Office Version
  1. 365
Hi there,

Sheet1:
A2:A100 =name of applicants
C2:C100 =Position candidates applied for
E2:E100 =Date candidates applied for the job

Sheet 2:
B19 =start date (eg. 5/1/2022)
B20 = end date (eg. 5/31/2022
B2:B100 has different job positions. (Eg. B2=Massage Therapist, Guest Service Agent,.....)

After I enter a date range in B19 and B20, what should be the formula let's say in G2 cell to count the total number of candidates who had applied for a particular position within that date range for that particular position?

What should be the formula in G2 cell?

Thank you for your help.
AR
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
how about
=countifs(Sheet1!$C$2:$C$100 , B2 , Sheet1!$E$2:$E4100 , ">="&B19, Sheet1!$E$2:$E4100 , "<="&B20)
copy down
and will give a count for each job type in column B2 to B100 on sheet2
 
Upvote 0
The above formula is giving an error message "A value used in the formula is of a wrong data type".
 
Upvote 0
sorry missed type 4 instead of $
=countifs(Sheet1!$C$2:$C$100 , B2 , Sheet1!$E$2:$E$100 , ">="&$B$19, Sheet1!$E$2:$E$100 , "<="&$B$20)

Sheet1
Book12
ABCDE
1NAMEJOBDATE
2Name1jobtype12/1/22
3Name2jobtype22/2/22
4Name3jobtype12/3/22
5Name4jobtype22/4/22
6Name5jobtype12/5/22
7Name6jobtype22/6/22
8Name7jobtype12/7/22
9Name8jobtype22/8/22
10Name9jobtype12/9/22
11Name10jobtype22/10/22
12
Sheet1


Sheet2
Book12
ABC
1JOBCOUNT
2jobtype15
3jobtype23
4jobtype32
5jobtype40
6jobtype50
7jobtype60
8jobtype70
9jobtype80
10jobtype90
11jobtype100
12jobtype110
13jobtype120
14
15
16
17
18
19Start Date2/1/22
20End Date2/10/22
Sheet2
Cell Formulas
RangeFormula
C2:C13C2=COUNTIFS(Sheet1!$C$2:$C$100,B2, Sheet1!$E$2:$E$100, ">="&B$19, Sheet1!$E$2:$E$100, "<="&B$20)
 
Upvote 0
It works now, thank you! One more question - if, in sheet1, column F2:F100 has either 0 or 1 (0 representing candidate was rejected and 1representating candidate forwarded to second round), what should be the formula in Sheet 2 Column H2 (HR Rejected/ Passed) for those same positions? So instead of counting the dates, we need to now be able to count the 0 or 1s. What formula should be given to count 0 or 1 instead of date?

Thank you again,
AR
 
Upvote 0
is that within the same date range - or just overall

if with the same date range
=COUNTIFS(Sheet1!$C$2:$C$100,B2, Sheet1!$E$2:$E$100, ">="&B$19, Sheet1!$E$2:$E$100, "<="&B$20)
then add the criteria for
Rejected within date range
=COUNTIFS(Sheet1!$C$2:$C$100,B2, Sheet1!$E$2:$E$100, ">="&B$19, Sheet1!$E$2:$E$100, "<="&B$20, $H$2:$H$100, 0 )
Forward within date range
=COUNTIFS(Sheet1!$C$2:$C$100,B2, Sheet1!$E$2:$E$100, ">="&B$19, Sheet1!$E$2:$E$100, "<="&B$20, $H$2:$H$100, 1 )

Ignoring dates
Rejected
=COUNTIFS(Sheet1!$C$2:$C$100,B2, $H$2:$H$100, 0 )
Forward
=COUNTIFS(Sheet1!$C$2:$C$100,B2, $H$2:$H$100, 1 )
 
Upvote 0
Solution

Forum statistics

Threads
1,215,555
Messages
6,125,490
Members
449,234
Latest member
slzaleski

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