This formula lists the duplicate values in the named range data (B5:B16) using the “Min count” value in D5 as a minimum threshold. In other words, a value must occur in the data at least as many times as the number in D5.  The result from the formula is dynamic and will change if the number in D5 is changed. Working from the inside out, the first step is to count the values in data. This is done with the COUNTIF function like this: Because there are 12 values in data, and data is used for both range and criteria, COUNTIF returns an array with 12 counts as a result: Each number represents the count of one value in data. For example, because “Red” is the first value in data, and because “Red” occurs 4 times total, the first number in the array is 4. The next step is to compare these counts to the “Min count” in D5: Cell D5 contains 2, so the result is an array of 12 TRUE and FALSE values like this: Each TRUE in this array represents a value that occurs at least 2 times in the data. This array is returned directly to the FILTER function as the include argument, and FILTER uses the array to return values that correspond to TRUE. These are values that occur at least twice in the data: FILTER returns the array to the UNIQUE function, and UNIQUE returns unique values: These values spill into range F5:F7 as the final result. Notice each of these values occurs at least 2 times in data.

Summary count

To get the summary count seen in column G, the formula in G5 is: With data as range, and the spill range F5# as criteria, COUNTIF returns the count that each value in column F appears in data.

Dynamic source range

Because data (B5:B16) is a normal named range, it won’t resize if data is added or deleted. To use a dynamic range that will automatically resize when needed, you can use an Excel Table, or create a dynamic named range with a formula.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.