Return True/False to check duplicate items in a range with one for
This is more robust:
=IF(COUNTA(A1:A10),MAX(FREQUENCY(A1:A10,A1:A10))=1 ,"")
With the first formula I was assuming ALL the cells in the range would
ALWAYS have something in them.
Biff
"Biff" wrote in message
...
Try this:
=SUMPRODUCT(COUNTIF(A1:A10,A1:A10))10
FALSE = no dupes
TRUE = dupes
Biff
"Tetsuya Oguma" wrote in message
...
Hi all,
I have a range, say, A1:A10, and want to check if any duplicate entry
exists
within this range.
What is the formula that returns True/False to do that?
Simple enough?
Tetsuya Oguma
|