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.
我需要一个公式来搜索“A4”是否在一个单元格范围内(D 列~ 400 个值)并将“是”或“否”写入 B4。我需要通过手动将公式向下拖动列来测试 A 列中的 1000 多个单元格。
这是一个简单的请求,但我似乎遗漏了一些东西。
将其放入B4并根据需要拖放:
B4
=IF(COUNTIF($D$1:$D$400,A4)>0,"YES","NO")
显然,根据需要更改 D 单元格的范围。
希望这能解决问题