How do I combine COUNTIF with OR

后端 未结 3 1919
礼貌的吻别
礼貌的吻别 2021-02-04 01:00

In Google Spreadsheets, I need to use the COUNTIF function on a range with multiple criteria. So in the table below, I would need to have something like =COU

3条回答
  •  既然无缘
    2021-02-04 01:38

    You can also use ArrayFormula around a SUM(COUNTIFS()) construct:

    =ArrayFormula(SUM(COUNTIF(B:B,{"Mammal", "Bird"}))
    

    Source: Google Docs Product Forum

提交回复
热议问题