如何只计算同一行特定列(A)为真,列(B)不为空

时间:2017-05-16 06:36:53

标签: excel excel-formula

$id=$uname->get('id');
$name=$uname->get('name');
echo '<a href="fetch-data.php?data=driver&uid='.$id.'">'.$name.'</a>';

B6如何只计算同一行特定列(A)为真,列(B)不为空。

例如A2,A4为真,B2不为空B4为空,因此仅计数B2 = 1

  | A                      | B                 | 
1 | Boolean                | number            | 
2 | TRUE                   | 0
3 | FALSE                  | 1
4 | TRUE                   | 
5 | FALSE                  | 1
- - - - - - - - -
6 | 2 COUNTIF(A2:A5,TRUE)  | ?

1 个答案:

答案 0 :(得分:1)

使用

=COUNTIFS(A2:A5,TRUE,B2:B5,"<>")

见图片参考:

enter image description here