I am trying to get a count of dates in column I that are equal to or less than the date in column J for each worker whose name is in a rotating series in column C.
SO far, I have
But this does not work.
Breaking it down,
return the correct value, so it is the comparison of I:I to J:J that the problem.
The data looks like this, but in a 2500 row table:
[TABLE="width: 251"]
<colgroup><col><col></colgroup><tbody>[TR]
[TD="align: right"][/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 100"]
<tbody>[TR]
[TD]J[/TD]
[TD]I[/TD]
[/TR]
[TR]
[TD]8/1/16[/TD]
[TD]8/1/16[/TD]
[/TR]
[TR]
[TD]7/20/16[/TD]
[TD]7/18/16[/TD]
[/TR]
[TR]
[TD]8/7/16[/TD]
[TD]8/8/16[/TD]
[/TR]
[TR]
[TD]8/5/16[/TD]
[TD]8/9/16[/TD]
[/TR]
[TR]
[TD]8/6/16[/TD]
[TD]8/4/16[/TD]
[/TR]
[TR]
[TD]7/27/16[/TD]
[TD]7/27/16[/TD]
[/TR]
[TR]
[TD]8/5/16[/TD]
[TD]8/1/16[/TD]
[/TR]
[TR]
[TD]8/5/16[/TD]
[TD]8/4/16[/TD]
[/TR]
</tbody>[/TABLE]
Any help is much appreciated.
SO far, I have
Code:
=COUNTIFS('April 2016 CARL Assigned'!$C:$C,"'April 2016 CARL Assigned'!$C2",'April 2016 CARL Assigned'!$J:$J,"<='April 2016 CARL Assigned'!$I:$I")
But this does not work.
Breaking it down,
Code:
=COUNTIFS('April 2016 CARL Assigned'!$B:$B,"'April 2016 CARL Assigned'!$B2")
The data looks like this, but in a 2500 row table:
[TABLE="width: 251"]
<colgroup><col><col></colgroup><tbody>[TR]
[TD="align: right"][/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 100"]
<tbody>[TR]
[TD]J[/TD]
[TD]I[/TD]
[/TR]
[TR]
[TD]8/1/16[/TD]
[TD]8/1/16[/TD]
[/TR]
[TR]
[TD]7/20/16[/TD]
[TD]7/18/16[/TD]
[/TR]
[TR]
[TD]8/7/16[/TD]
[TD]8/8/16[/TD]
[/TR]
[TR]
[TD]8/5/16[/TD]
[TD]8/9/16[/TD]
[/TR]
[TR]
[TD]8/6/16[/TD]
[TD]8/4/16[/TD]
[/TR]
[TR]
[TD]7/27/16[/TD]
[TD]7/27/16[/TD]
[/TR]
[TR]
[TD]8/5/16[/TD]
[TD]8/1/16[/TD]
[/TR]
[TR]
[TD]8/5/16[/TD]
[TD]8/4/16[/TD]
[/TR]
</tbody>[/TABLE]
Any help is much appreciated.