在Google Spreadsheets中,我需要在具有多个条件的范围内使用COUNTIF
函数。因此,在下表中,我需要使用=COUNTIF(B:B,"Mammal"or"Bird")
之类的东西,并返回值4。
A |B
-------------------
Animal | Type
-------------------
Dog | Mammal
Cat | Mammal
Lizard | Reptile
Snake | Reptile
Alligator | Reptile
Dove | Bird
Chicken | Bird
我已经尝试了很多不同的方法,但是没有运气。
最佳答案
一种选择:
=COUNTIF(B:B; "Mammal") + COUNTIF(B:B; "Bird")
根据文档:
COUNTIFS
:此功能仅在new Google Sheets中可用。例:
=DCOUNTA(B:B; 2; {"Type"; "Mammal"; "Bird"})
关于regex - 如何将COUNTIF与OR结合,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21419578/