查找 B 列中的唯一数字与 A 列中的集合相比:Google 张

Finding unique numbers in Column B compared to the set in Column A: Google sheets

我有一个 sheet 有 2 列 ID 号。我需要一个公式来比较 B 列中的数字(大约 50 个)和 A 列中的数字(大约 1000 个)。在 C 列中,我想 return B 中但不在 A 中的数字。

我知道我可以 运行 手动重复搜索,但我正在寻找一个公式来处理它。此外,突出显示在这种情况下没有帮助。

谢谢!

尝试:

=UNIQUE(FILTER(B1:B; NOT(COUNTIF(A1:A; B1:B))))