I would like to pull all of the duplicates out of a set of data. I want to see all of the duplicates, including the line it is a duplicate of.
For Example
2
2
4
3
4
6
6
For the above, I would want to see all the records except for 4 and 3. I want to see both of the 2s, 4s, and 6s.
What is the easiest way to do this?
Thank you!
Solved! Go to Solution.
Download/install the CReW Macro Pack and use the "Only Unique" tool.
Hi @ShannonH,
This is a simple matter of grouping by the number and counting the occurrence of the number, then removing those where the count = 1.
I've attached the solution.
Perfect.
Agreed that works.
But I would still recommend the Only Unique macro mentioned above.
When you have multiple columns you can:
Thank you - this really worked for me.