Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/google-sheets/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google sheets 在google电子表格中获得稳定范围(添加/删除该范围内的行后)_Google Sheets_Google Sheets Formula - Fatal编程技术网

Google sheets 在google电子表格中获得稳定范围(添加/删除该范围内的行后)

Google sheets 在google电子表格中获得稳定范围(添加/删除该范围内的行后),google-sheets,google-sheets-formula,Google Sheets,Google Sheets Formula,有一系列细胞问题。 列表的前两行是标题,第3-82行(共80行)是数据。 有时我不得不从这些数据中删除/添加行,我的条件格式化规则和公式正在更改 E.x.=COUNTIF(WIN!B3:B78;“”)具有范围B3:B82,但删除行后,它变为B3:B78 有没有办法对这个82值进行硬编码?您可以使用索引功能: =COUNTIF(B3:INDEX(B:B,82), "<>") =COUNTIF(B3:INDEX(B:B,82),“”) 谢谢!使用=COUNTIF(W

有一系列细胞问题。 列表的前两行是标题,第3-82行(共80行)是数据。 有时我不得不从这些数据中删除/添加行,我的条件格式化规则和公式正在更改

E.x.
=COUNTIF(WIN!B3:B78;“”)
具有范围
B3:B82
,但删除行后,它变为
B3:B78


有没有办法对这个82值进行硬编码?

您可以使用
索引
功能:

=COUNTIF(B3:INDEX(B:B,82), "<>")
=COUNTIF(B3:INDEX(B:B,82),“”)

谢谢!使用
=COUNTIF(WIN!B3:INDEX(WIN!B:B;82);”)
处理其他页面的案例