How to count the number of duplicate values in a column

How to count the number of repeated values in a column? I searched many threads but unfortunately did not find a clear answer.

Thank you for your time!

Solved Solved
0 2 749
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Maybe this:

(COUNT(table[column]) - COUNT(UNIQUE(table[column])))

View solution in original post

2 REPLIES 2

Could you please elaborate your requirement with some examples?

Steve
Platinum 4
Platinum 4

Maybe this:

(COUNT(table[column]) - COUNT(UNIQUE(table[column])))
Top Labels in this Space