如果列包含给定数字 X 次,则突出显示单元格
我有一个大型 Excel 电子表格,其中有一列包含标识号。每个唯一的数字将至少出现 12 次。我想强调那些出现超过 12 次的数字。有没有办法以非编程方式做到这一点?
I have a large Excel spreadsheet with a column that has an identifying number. Each unique number will occur at least 12 times. I would like to highlight those numbers that appear more than 12 times. Is there a way to do this non-programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设 A 列中有您所有的数字。然后,要突出显示出现次数超过 12 次的值,请执行以下操作:
=COUNTIF(A:A, A1) > 12
这有帮助吗?
Suppose in column A you have all your numbers. Then to highlight values that occur more than 12 times do as follows:
=COUNTIF(A:A, A1) > 12
Does this help?
使用条件格式:
选择整个工作表,然后选择条件格式。应用此公式,然后选择您想要的格式。它适用于任何列中的任何单元格。
Use Conditional Formatting:
Select the entire sheet, then choose Conditional Formatting. Apply this formula, and pick the formatting you'd like. It will work for any cell, in any column.