如何获取列表 B 中存在但存在于列表 A 中的缺失 ID excel

How to get the missing ids present list B but present in list A excel

我有 2 个列表,List-A 和 List-B,它们的 ID 超过 450000。我想在列表 B 中找到缺失的 ID,但存在于 excel 的列表 A 中。

您可以尝试 2 个公式:

VLOOKUP: =VLOOKUP(List-A!A2;List-B!$A:$A;1;FALSE)

拖动 down/Copy 并将公式粘贴到列表 A 中您的 ID 列旁边的列中。如果你拖下公式后收到#N/A,那么你就知道这个ID号在List-A里,不在List-B里

INDEX-MATCH: =INDEX(List-B!$A:$A;MATCH(List-A!A2;List-B!$A:$A;0))

还是同样的道理,如果你在公式下拉后收到#N/A,那么你就知道这个ID号在List-A里,不在List-B里