Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
tamilarasu
Champion
Champion

Display All Duplicate Records

Hi,

Is there any way to display all the duplicate records in a chart. I have duplicate values in field %CustProd and I need to show the both file names and %CustProd like below. I have to do this in expression. Can anyone guide me.


Capture.PNG

Attached sample file also


Thank you in advance.

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You should be able to display the duplicates with a calculated dimension of:

=if(

aggr(Count(%CustProd)>1,%CustProd)

,%CustProd)

and a second Dimension of Filename. Uncheck "suppress zero values" on Presentation. See attached.

-Rob

http://masterssummit.com

http://robwunderlich.com

View solution in original post

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You should be able to display the duplicates with a calculated dimension of:

=if(

aggr(Count(%CustProd)>1,%CustProd)

,%CustProd)

and a second Dimension of Filename. Uncheck "suppress zero values" on Presentation. See attached.

-Rob

http://masterssummit.com

http://robwunderlich.com

tamilarasu
Champion
Champion
Author

hi-wave.gif ROBthank-you.gifnice-day-smiley-emoticon.gif