【发布时间】:2013-09-12 11:21:42
【问题描述】:
KT
WW 数据
34 1
34 3
34 4
35 2
35 5
36 1
36 0
如何计算 DATA>3 for WW=34 的作业数?
我尝试了几种方法,但在 Google 电子表格中都不起作用。
方法一:=counta(iferror(filter(T:T;TRIM(T:T)>"3";TRIM(K:K)="34")))
方法二:=ArrayFormula(sum((K:K="34")*(T:T>"3")))
方法三:=ArrayFormula(sum(if(K:K="34",if(T:T>"3")))
方法四:=count(filter(T:T;T:T>"3";K:K="34"))
方法五:=iferror(index(query(K:T,"select count(T) where T>'3' AND K='34'"),2,1),"")
但一切都不起作用...... 谁能帮忙??
【问题讨论】:
-
列的类型是:文本还是数字?
标签: function google-sheets spreadsheet