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.
我有两列数据。第三列 (C) 中的 A 列和 B 列我想键入一个公式,如果 B 列中的数据存在于 A 列中的任何位置,则该公式将返回“true”。就这样 :) 提前谢谢你。
尝试这个:
=NOT(ISNA(VLOOKUP(B1,A:A,1,0)))
假设您从单元格 C1 开始。
VLOOKUP 返回 A 列中 B1 的值,如果未找到,则返回 #N/A。如果没有找到值,ISNA 将返回 TRUE,如果是,则返回 FALSE,最后 NOT 否定结果,如果找到值,它将返回 TRUE,否则返回 FALSE。