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.
我有一个包含近 30,000 行的 Excel 表,并且我有一个要在大小为 100 值的 Excel 中搜索的列表。我不想每次都手动搜索。
如何一次搜索所有这 100 个值?
假设您的较长列表在 ColumnA 中,而较短的列表是命名 range My100List,在 B1 中并复制下来以适应:
My100List
=IF(ISERROR(MATCH(A1,My100List,0)),"","listed")
然后过滤 ColumnB 以选择listed.
listed
编辑重新评论:
选择 ColumnA 并应用条件格式公式规则:
=MATCH(A1,My100List,0)>0
有选择的填充颜色。