问题描述
我有一个excel表。在列E下,我有425个单元格的数据。我想检查在列E下的剩余424个单元格中的任何其他地方是否重复相同的数据(即单元格内的文本)。我该怎么做?
例如,在E54中我有
Hello Jack
如何查看这个值以查看是否在其他任何单元格中?
p>您可以使用
= SUMPRODUCT(1 / COUNTIF(E1:E425,E1:E425))
/ p>
计算E1中唯一单元格的数量:425
答案425表示所有值都是唯一的。
答案421表示4个值是其他值的重复
I have an excel sheet.
Under column E, I have 425 cells with data. I want to check if the same data (i.e. text inside the cell) is repeated anywhere else in any of the remaining 424 cells under column E. How do I do this?
For example, in E54 I haveHello Jack
How would I check this value to see if it was in any other of these cells?
You could use
=SUMPRODUCT(1/COUNTIF(E1:E425,E1:E425))
to count the number of unique cells in E1:425
An answer of 425 means all the values are unique.
An answer of 421 means 4 values are duplicates of other value(s)
这篇关于检查一个范围内唯一单元格的数量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!