I'm trying to figure out how to find duplicated row combinations.
My data uses text so I've been having a hard time finding a method that works with it.
A | B | C | D |
---|---|---|---|
T001 | Apple | Apple | Apple |
T002 | Apple | Banana | Apple |
T003 | Apple | Apple | Banana |
T004 | Apple | Mango | Kiwi |
So T002 and T003 should count as a duplicate.
I used concatenates in another column, but I later realized that it doesn't account for people putting the combination in a different order.