如何在交叉表中匹配并获取不匹配的记录?

How to match and get non-matching records in cross sheets?

我有一个Googlesheet,我的客户还有一个Googlesheet。所以我想从我客户的 sheet(B 列)中获取与我的 sheet(B 列)不匹配的完整数据。我如何匹配和获取从我的客户 sheet 到我的 sheet 的不匹配值?

要从客户的 sheet 获取值,首先 运行 这个公式:

=IMPORTRANGE("client-sheet-ID", "sheetname!B2:B")

那你可以试试:

=FILTER(IMPORTRANGE("client-sheet-ID", "sheetname!B2:B"), 
 NOT(REGEXMATCH(IMPORTRANGE("client-sheet-ID", "sheetname!B2:B"), 
 "^"&TEXTJOIN("$|^", 1, UNIQUE(B2:B))&"$")))