$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) | ?