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 apps script 如何在google电子表格中比较两个未排序的表_Google Apps Script_Google Sheets_Google Sheets Formula - Fatal编程技术网

Google apps script 如何在google电子表格中比较两个未排序的表

Google apps script 如何在google电子表格中比较两个未排序的表,google-apps-script,google-sheets,google-sheets-formula,Google Apps Script,Google Sheets,Google Sheets Formula,我尝试只筛选表中的行,这些行上次不在表中(前两列是标识符) 这些都是我失败的尝试: =IFNA(QUERY(ArrayFormula(if(countif(V8:V30&" "&W8:W30,Q8:Q30&" "&R8:R30)=0,Q8,"")),"select Col1 where Col1 <> ''"), "") 使用这个公式 =FILTER(

我尝试只筛选表
中的行,这些行上次不在表
中(前两列是标识符)

这些都是我失败的尝试:

=IFNA(QUERY(ArrayFormula(if(countif(V8:V30&" "&W8:W30,Q8:Q30&" "&R8:R30)=0,Q8,"")),"select Col1 where Col1 <> ''"), "")
使用这个公式

=FILTER(A3:D, NOT(COUNTIF(F3:F, A3:A)))

FRESH
A
中的值,而不是
F

参考:

谢谢!这是检查“新鲜”表是否为空的好公式吗<代码>=IF((SUMPRODUCT(LEN(AB8:AB)>0))=0,“相同”,“新”)
如果表为空,则为空。你可以看到。但是也
=IF(行(AB8:AB)=COUNTBLANK(AB8:AB),“相同”,“新”)
=FILTER(A3:D, NOT(COUNTIF(F3:F, A3:A)))