How to use the COUNTIF Function to find Duplicates and Unique Values In Excel

We can also use the COUNTIF function for finding duplicates in one column, between two columns, or in a row.

Example 1: Find and count duplicates in 1 column

The formula =COUNTIF(A2:A10, A2)>1 will spot all duplicate entries in the range A2:A10 while another function =COUNTIF(B2:B10, TRUE) will tell you how many duplicates are there

Example 2: Count duplicates between two columns

Suppose you have two separate lists, say lists of names in columns B and C, and you want to find out how many appear in both columns, you can use Excel COUNTIF in combination with the SUMPRODUCT function to count duplicates.

=SUMPRODUCT0((COUNTIF(B2:B1000,C2:C1000)>0)*(C2:C1000<>””))

To count how many unique names are there in Column C, i.e. names that do NOT appear in Column B:

=SUMPRODUCT((COUNTIF(A2:A1000,C2:C1000)=0)*(C2:C1000<>””))

Example 3: Count duplicates and unique values in a row

You can use one of the below formulae to count duplicates or unique values in a certain row rather than a column.

Count duplicates in a row:

=SUMPRODUCT ((COUNTIF(A5:J5,A5:J5)>1)*(A5:J5<>” “))

Count unique values in a row:

=SUMPRODUCT((COUNTIF(A5:J5,A5:J5)=1*(A5:J5<>” “))

Important Points to remember

  • COUNTIF is not case-sensitive.
  • COUNTIF will only check one condition at a time.
  • COUNTIF needs a range for the evaluation.
  • In COUNTIF the criteria must be enclosed in the double-quotes.
  • If the criteria are evaluated from a different cell then that cell must not be enclosed in the double-quotes. E.g. “=” & E5
  • It gives an error if the matching string exceeds 255 characters.

FAQs

What is the COUNTIF function in Excel?

The COUNTIF function in Excel is used to count the number of cells that match a single condition applied. It can include Dates, Numbers, and Texts. It uses various logical operators like <(Less Than), >(Greater Than), >=(Greater Than or Equal to), <=(Less Than or Equal to), =(Equals to), and <>(NOT) for matching the condition. It also uses some wildcards like * and ? for partial matching.

When to use an ampersand in a COUNTIF formula?

If you use a number or a cell reference in the exact match criteria, you need neither ampersand nor quotes. For example

=COUNTIF(A2:A10,100) Or

=COUNTIF(A2:A10,D2)

If your criteria is an expression with a cell reference or another Excel function, you have to use quotes(“”) to start the text string and ampersand (&) to concatenate and finish the string off For example :

=COUNTIF(A2:A10,”>”&D2) Or

=COUNTIF(A2:A10,”<=”&Today())

How can we use COUNTIF in Excel on a non-contiguous range or a selection of cells?

Excel doesn’t work on non- adjacent range, nor does its syntax allow specifying several individual cells as the first parameter.

You can use a combination of several COUNTIF functions:

=COUNTIF(A2,”>0″) + COUNTIF(B3,”>)”) + COUNTIF (C4,”>0″)

     



Excel COUNTIF Function

The COUNTIF function in Excel is used to count the number of cells that match a single condition applied. It can include Dates, Numbers, and Texts. It uses various logical operators like <(Less Than), >(Greater Than), >=(Greater Than or Equal to), <=(Less Than or Equal to), =(Equals to), and <>(NOT) for matching the condition. It also uses some wildcards like * and ? for partial matching.

Similar Reads

How to Use Excel COUNTIF Function (with Examples)

COUNTIF Function is one of the Statistical Functions, to count the number of cells that meet a criterion; for example, to count the number of times a student appears in an attendance list....

COUNTIF Formula for Text and Numbers (Exact Match)

The COUNTIF function formula that counts text values matching a specified criterion is:...

COUNTIF Formulas with Wildcard Characters (partial match)

If your Excel data include several variations of the keywords you want to count, then you can use a Wildcard Character to count the cells containing that particular word, phrase, or letter as a cell’s content....

COUNTIF Greater than, Less than, or Equal to

To count cells with values greater than, less than, or equal to the number you specify, you simply add a corresponding operator to the criteria....

COUNTIF Not Blank

This formula example demonstrates how you use the COUNTIF function in Excel to count the number of blank cells in a specified range....

COUNTIF Blank

If you want to count blank cells in a certain range, use the formula with a wildcard character for text values and with the “” criteria to count all empty cells....

Excel COUNTIF with dates

If you want to Count cells with dates that are greater than, less than, or equal to the date you specify in another cell. All the above-discussed formulas work for dates as well as numbers....

Excel COUNTIF with Multiple Criteria

COUNTIF Function is not exactly designed to count cells with multiple criteria. The COUNTIFS function is used to count cells that match two or more criteria(AND logic). You can combine two or more COUNTIF functions in one formula to solve some easy tasks....

Using the COUNTIF Function to find Duplicates and Unique Values

We can also use the COUNTIF function for finding duplicates in one column, between two columns, or in a row....