Forum Discussion

TannerBuck7's avatar
TannerBuck7
Microsoft Employee
10 years ago
Solved

Count duplicate values

Is there a way to count the number of rows in a column that have duplicate values? I have a column with a large list of names and I just want to count the number of names that are repeated and return...
  • TannerBuck7's avatar
    10 years ago

    I figured out a solution that worked for my data.

     

    I created a calculated measure that subtracted the DISTINCTCOUNT of the Names from the DISTINCTCOUNT of the unique identifier in the table.

     

    The difference is the amount of names with multiple rows in the table.