比较两个 Excel 列 A 和 A 的数据B,并显示A列B中不存在的数据
我有一个 Excel 文件,其中包含 A 列和 B 列,两者都包含其他列中可能存在或不存在的数据,我只对 B 中不存在的 A 列数据感兴趣。这些列具有相同的标题名称。我可以使用什么公式来显示 A 列中的哪些项目不在 B 列中?
I have an Excel file that has columns A and B, both have data that may or may not exist in other column, I'm only interested in the data of column A that do not exist in B. These Columns have same Header names. What formula can I use to show which items in column A aren't in B?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将其放入 C2 中并向下复制
然后,如果 A 中的值不在 B 中,则 C 列中的单元格将显示“不在 B 中”。
Put this in C2 and copy down
Then if the value in A isn't in B the cell in column C will say "not in B".
假设 A1:A10 和 B1:B10 中有数据,并且您想要突出显示 A1:A10 中的哪些值未出现在 B1:B10 中。
尝试如下:
输入以下公式:
=ISERROR(MATCH(A1,$B$1:$B$10,0))
现在选择要突出显示 A 列中未出现在 B 列中的值的格式
这将突出显示任何值在 A 列中,确实如此没有出现在 B 列中。
Suppose you have data in A1:A10 and B1:B10 and you want to highlight which values in A1:A10 do not appear in B1:B10.
Try as follows:
Enter the following formula:
=ISERROR(MATCH(A1,$B$1:$B$10,0))
Now select the format you want to highlight the values in col A that do not appear in col B
This will highlight any value in Col A that does not appear in Col B.
A 列中不存在于 B 列中的所有值都将具有红色背景。
希望它作为起点有所帮助。
All values of column A that are not present in column B will have a red background.
Hope that it helps as starting point.