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.
我在excel表中有如下数据:
我的问题是如何编写一个函数,以便 c 列中的值检查 a 列中是否存在该值,如果存在则返回是,否则返回否。例如,如果我在 C 列中输入 A2,则 Excel 将在 D 列中返回 Yes。
请试试:
=IF(MATCH(C2,A:A,0)>1,"Yes","")
MATCH#N/A如果找不到匹配项则返回,最好检查错误:
MATCH
#N/A
所以 D2 的公式是
=IF(ISNA(MATCH(C2,A:A,0)),"No","Yes")