Forum Discussion
wenners68
6 years agoHelper II
Find duplicates
Hi, I want to create a new table from the table below only containg duplicated item lines. A customer should only have 1 main page for each edition in a publication. In this case Name A's 2 lines ...
- 6 years ago
From your original query, then it appears to be the expected output (New table with duplicates):
This can be achieved using duplicate table and then simply using 'Keep Duplicates' (option mentioned in the previous comments by @Fowmy).
If this post solved your query, mark this post as a solution and give a thumbs up !!!
Anonymous
6 years agoNot applicable
You can achieve this in Dax using SUMMARIZE
Go to the Data tab and select New table,
NewTable = SUMMARIZE('TableName','TableName'[Customer],'TableName'[Item],'TableName'[Publication],'TableName'[Edition])note - ensure you change "'TableName'" to the name of the table that you want to reference.
Karlos.