Forum Discussion
Anonymous
5 years agoNot applicable
Display only repeated number
Hi, I want to create a column which ID's are repeted from column ID. Id Type Status RADOC0010024 RAD Cancelled RADOC0010024 RAD Cancelled RADOC0010056 RAD Cancelled RADOC0...
- Anonymous5 years ago
Hi Anonymous ,
Create a calculated column on original table.
Column = CALCULATE(COUNT('Table'[Id]),ALLEXCEPT('Table','Table'[Id]))Then create a new table and filter out the records which count <=1.
Table 2 = DISTINCT(SELECTCOLUMNS(FILTER('Table','Table'[Column]>1),"id",'Table'[Id]))Best Regards,
Jay
Anonymous
5 years agoNot applicable
Hi Anonymous
You can refer to this link below
https://community.powerbi.com/t5/Desktop/Identify-duplicates-and-show-up-records/td-p/210061
https://community.powerbi.com/t5/Desktop/Only-Show-Duplicates/td-p/385062
Kudo me if this is the solution.
Anonymous
5 years agoNot applicable
Anonymous
I am trying to refer the links but EARLIER function is not working.
please find image attached.
Could you please help me on this .
Thanks !
- Anonymous5 years agoNot applicable
Count Emails = Var Emails = [Emails] RETURN CALCULATE( COUNTROWS('Your Table'), all('Your Table'), 'Your Table'[Emails] = Emails )
You can try this one. Available in the 1st link Anonymous