在 Google 表格中,当日期在特定范围内而范围在两个不同的列中时计算一行

In Google Sheets, count a row when date is in a certain range while range is in two different columns

在 Google 张中我想:

数据集示例:

In progress Closed
09/02/2019  10/02/2019
10/02/2019  11/02/2019
11/02/2019  11/02/2019
11/02/2019  12/02/2019
12/02/2019  13/02/2019  
05/02/2019  18/02/2019

我想设置一个特定日期并计算该范围内的行数。

例如date = 11/02/2019 将给出以下输出:

In progress Closed      Expected Outcome
09/02/2019  10/02/2019  0
10/02/2019  11/02/2019  1
11/02/2019  11/02/2019  1
11/02/2019  12/02/2019  1
12/02/2019  13/02/2019  0
05/02/2019  18/02/2019  1

在我的 sheet 中,我有两列,我希望根据上述数据得到这样的结果:

Date         Work in Progress
10/02/2019   3
11/02/2019   4
12/02/2019   3
13/02/2019   2
20/02/2019   0

如何在 Google 表格中实现此目的?

我尝试了很多不同的函数和聚合,但没有一个能给我想要的结果。 COUNT 仅适用于一行,COUNTIF 似乎只接受 1 列内的范围,并且 IF、SUM、AND、COUNT、COUNTIF 的组合都不 return 正确的值。

只要A是你的"in progress"栏,B是你的"Closed"栏,C是你的"Date"栏,我想这会给你想要的

=countifs(A:A,"<="&C6,B:B,">="&C6)