本文介绍了Google电子表格中带有len的Countif的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一列这样的XXX:
I have a column XXX like this :
XXX
A
Aruin
Avolyn
B
Batracia
Buna
...
XXX
A
Aruin
Avolyn
B
Batracia
Buna
...
我只想计算单元格中的字符串长度> 1的单元格
该怎么做?
我正在尝试:
I would like to count a cell only if the string in the cell has a length > 1.How to do that?I'm trying :
COUNTIF(XXX1:XXX30, LEN(...) > 1)
但是我应该写些什么而不是...?
But what should I write instead of ... ?
预先感谢您。
推荐答案
使用 = ARRAYFORMULA(len( XXX1:XXX30)> 1)
,然后根据该新列表执行 COUNTIF
: = countif(XXY1: XXY30,true())
。
Create another list using an =ARRAYFORMULA(len(XXX1:XXX30)>1)
and then do a COUNTIF
based on that new list: =countif(XXY1:XXY30,true())
.
这篇关于Google电子表格中带有len的Countif的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!