Forum Discussion
Anonymous
3 years agoNot applicable
Detect errors by comparing row values in power BI
Hello, I have data like follows: Here I'm trying to detect rows in which I have errors similar to this one framed in red. In my client file I have John Doe with email address : joh...
johnt75
Super User
3 years agoYou could build table with the unique combinations of client ID, email and name like
Unique values =
SUMMARIZE ( 'Table', 'Table'[Client ID], 'Table'[Email', 'Table'[Name] )
Then build a measure
Num unique values = COUNTROWS( 'Unique values' )
Create 3 separate table visuals, one for each column of the unique values table and add the measure. Filter the tables so that they only show when the measure is greater than 1 and that should show all the entries where there are duplicates.