1
I'm trying to create a report in excel that counts the number of duplicate rows, excluding the first instance of that row, in an imported sheet. I know that I could use "remove duplicates" in the Data menu for this, and I've also checked this solution: Remove duplicate rows in Excel and count results
But my goal is to be able to fully view what the duplicates are and where they are in the spreadsheet. I also want the report to count the number of original entries and the difference with the duplicates removed, like so:
X1 aaaaaaa
X2 bbbbbbb
X1 aaaaaaa
X3 ccccccc
X4 ddddddd
X1 aaaaaaa
Total Entries: 6
Duplicate Rows: 2
Total Unique Entries: 4
Will you only every have one row that has duplicates? – cybernetic.nomad – 2019-04-15T21:53:02.693
I want to count duplicate rows, not duplicates within the row in different columns. Like in my example, rows 3 and 6 are duplicates, because both "X1" and "aaaaaa". I'm not trying to count just the instances of "X1" and "aaaaaa" separately. – None – 2019-04-15T21:55:58.093
That does not answer my question. Let me reword: Could you have a seventh row with
X4 ddddddd
, resulting in 7 total entries, 3 duplicate roes and 4 unique entries? Are you willing to accept a solution with a helper column? – cybernetic.nomad – 2019-04-15T21:57:31.593Helper column(s) seems like a must, as presented. – Alex M – 2019-04-15T21:58:49.313
Yes - that's exactly what I'm looking for. A helper column would be fine. The not-quite-there solution I'm currently using has one. – None – 2019-04-15T21:59:38.137