Forum Discussion
83dons
1 year agoHelper III
Identifying duplicates
Hi I have a simple table with two columns and I want to identify all the roles where there are duplicate NI Numbers (ie NI Number > 1). I guess there could be more than 2 duplicates for the same NI N...
Ahmedx
1 year agoSuper User
you need to create a table, pull out the NI_Number column into the rows and write a measure like this
= DISTICTCOUNT( 'yourtable'[ID])
if the measure shows more than 1 then there is a duplicate