Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在两个电子表格中有数据。两个电子表格的 A 列中都是客户编号。我需要在表 2 中找到也在表 1 中的客户编号。如何最好地做到这一点?使用 COUNTIF 我猜。我过去曾使用过它,但很多个月前我都在努力回忆如何使用它!
在表 2 中,使用公式: =NOT(ISNA(MATCH(Sheet2!A1,Sheet1!A:A,0)))并向下复制公式。
=NOT(ISNA(MATCH(Sheet2!A1,Sheet1!A:A,0)))
对于 Sheet 2 中的每个项目,它将检查它是否在 Sheet 1 中并返回 TRUE 或 FALSE。