I am trying to count the number of cells that fall within a date range and meet 2 different criteria within that date range. Example below
Column A Column B
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Construction Start[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD]5/1/2017[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]8/15/2018[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]9/1/2018[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]6/4/2017[/TD]
[TD]P[/TD]
[/TR]
[TR]
[TD]7/30/2018[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]5/15/2017[/TD]
[TD]P[/TD]
[/TR]
[TR]
[TD]8/3/2018[/TD]
[TD]P[/TD]
[/TR]
[TR]
[TD]8/1/2018[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]2/1/2017[/TD]
[TD]N[/TD]
[/TR]
</tbody>[/TABLE]
In the above example, I would need to know how many cells within this quarter (7/1/18 - 9/30/18) meet the criteria of Status = "A" and "N" So the answer would be 4 in the above example
Any help would be greatly appreciated =) Thank you in advance.
Column A Column B
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Construction Start[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD]5/1/2017[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]8/15/2018[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]9/1/2018[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]6/4/2017[/TD]
[TD]P[/TD]
[/TR]
[TR]
[TD]7/30/2018[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]5/15/2017[/TD]
[TD]P[/TD]
[/TR]
[TR]
[TD]8/3/2018[/TD]
[TD]P[/TD]
[/TR]
[TR]
[TD]8/1/2018[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]2/1/2017[/TD]
[TD]N[/TD]
[/TR]
</tbody>[/TABLE]
In the above example, I would need to know how many cells within this quarter (7/1/18 - 9/30/18) meet the criteria of Status = "A" and "N" So the answer would be 4 in the above example
Any help would be greatly appreciated =) Thank you in advance.