Google Sheets Formulas – Count Unique Values Appearing More Than X Times

formulasgoogle sheets

Given a column of names I would like a formula to return a count of unique names that appear >=X number of times. The function COUNTUNIQUE works only if X=1.

Best Answer

=FILTER(A:A,COUNTIF(A:A,A:A)>=2)

IF COUNT is more than 2,FILTER them in.