Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/python-3.x/18.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 Sheets_Spreadsheet_Google Docs - Fatal编程技术网

Google sheets 从一系列单元格中排除特定值

Google sheets 从一系列单元格中排除特定值,google-sheets,spreadsheet,google-docs,Google Sheets,Spreadsheet,Google Docs,我想从我的迷你图中删除N/A值#N/As是使用=NA()生成的 我的公式是=SPARKLINE(D5:AN5,{“ymin”,0}) 如何从“D5:AN5”范围中排除特定值?我似乎找不到方法。请尝试筛选数据: =SPARKLINE(过滤器(D5:J5,ISNA(D5:AN5)=false),{“ymin”,0})

我想从我的迷你图中删除N/A值#N/As是使用
=NA()
生成的

我的公式是
=SPARKLINE(D5:AN5,{“ymin”,0})

如何从“D5:AN5”范围中排除特定值?我似乎找不到方法。请尝试筛选数据:

=SPARKLINE(过滤器(D5:J5,ISNA(D5:AN5)=false),{“ymin”,0})