Count Number of Employees Absent Within Dates

Nuclearman83

New Member
Joined
Aug 15, 2018
Messages
10
Office Version
  1. 2016
Platform
  1. Windows
m69T89
I am trying to determine the number of people (List of Employees) on vacation based on their vacation start date and end date (Employee Leave Tracker). I need to account for each day of the year and ensure a certian percentage is not absent. I have tried:

=COUNTIFS('Employee Leave Tracker'!$C:$C,">="&DATE(18,8,1),'Employee Leave Tracker'!$D:$D,"<="&DATE(2018,8,1))

But it comes up with zero every time. This seems like a painful way to do it since i have to do it for 365 days and it doesn't work anyway. I have tried a if-and function but it didnt work either. Sorry if I didnt post this right. Any assistance would be greatly appreciated. Thank you in advance.
fDX4gU


<a href="https://ibb.co/crNRvp"><img src="https://preview.ibb.co/kqm889/Tracker.jpg" alt="Tracker" border="0"></a>


<a href="https://ibb.co/fDX4gU"><img src="https://preview.ibb.co/epeT89/Percent_Absent.jpg" alt="Percent_Absent" border="0"></a>
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
In A2:

Code:
=COUNTIFS('Employee Leave Tracker'!$C:$C,"<="&A$1,'Employee Leave Tracker'!$D:$D,">="&$A1)

WBD
 
Upvote 0
Thank you for the qucik reply. I tried the suggested formula and it seems to work as it counts up but doesn't change once the employee has passed the return date.

<a href="https://ibb.co/de0eWU"><img src="https://preview.ibb.co/i346BU/New_Formula.jpg" alt="New_Formula" border="0"></a>
 
Upvote 0
Oops. I anchored the column not the row. Change A2 to this then copy across:

Code:
=COUNTIFS('Employee Leave Tracker'!$C:$C,"<="&A$1,'Employee Leave Tracker'!$D:$D,">="&A$1)

WBD
 
Upvote 0
You are AWESOME! Thank you so much. I have been beating myself up. Thank you.
 
Upvote 0

Forum statistics

Threads
1,213,539
Messages
6,114,221
Members
448,554
Latest member
Gleisner2

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