gpt4 book ai didi

google-sheets - 在 Google 表格中,您可以使用 WEEKNUM() 和 YEAR() 等特定条件来计算行数吗?

转载 作者:行者123 更新时间:2023-12-03 04:19:19 27 4
gpt4 key购买 nike

我有一列日期:

2/7/2020 3:51:37
2/7/2020 1:11:16
2/6/2020 23:41:58
2/6/2020 23:33:49
2/6/2020 23:31:47
3/6/2020 23:28:12
2/6/2020 23:26:39
2/4/2020 23:22:43
2/6/2020 23:22:22
2/3/2021 23:05:59
2/6/2021 23:02:09
1/2/2021 22:59:58
1/5/2021 22:56:24
2/3/2022 22:27:43
2/6/2022 21:58:04
2/6/2022 21:49:01

我想使用COUNTIFS来计算日期为一年中的某一周X和某一年Y<的行数。无需先计算另一列?

编辑:

我尝试过一些类似的:

=COUNTIFS(A:A, WEEKNUM(A:A) = 10, A:A, YEAR(A:A) = 2020) 但这实际上没有意义,因为我' m 将范围传递给 WEEKNUMYEAR

最佳答案

您的 criteria_range 和 criteria 不匹配,请更改您的公式,如下所示:

=arrayformula(countifs(weeknum(F:F),10,year(F:F),2020))

=arrayformula(COUNTIF((WEEKNUM(F:F) = 10)* (YEAR(F:F) = 2020),1))

enter image description here

关于google-sheets - 在 Google 表格中,您可以使用 WEEKNUM() 和 YEAR() 等特定条件来计算行数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60122256/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com