条件Countifs谷歌表

时间:2021-03-25 06:59:01

标签: google-sheets count formula countif

在此处输入图片说明enter image description here

所以基本上在(专栏团队)我有一个“Talaga&Burot”,在(专栏状态)我有“准时和慢” Countif 不工作,我想要做的是,我可以计算 burot 有多少慢和准时,talaga 有多少慢和准时。

1 个答案:

答案 0 :(得分:1)

假设'Team'栏是A栏,'Status'栏是B栏,你可以试试

=query(A2:B, "Select A, count(A) where A <>'' group By A pivot B", 0)

更改范围以适应,看看是否适合您?

enter image description here

参考