I'm trying to get a list of values that contain duplicates into unique rows.
| Column A |
|---|
| Cell 1 |
| Cell 2 |
| Cell 3 |
| Cell 1 |
| Cell 2 |
| Cell 3 |
| Cell 1 |
| Cell 2 |
| Column A | Column B | Column C |
|---|---|---|
| Cell 1 | Cell 1 | Cell 1 |
| Cell 2 | Cell 2 | Cell 2 |
| Cell 3 | Cell 3 |
I've tried using
=TRANSPOSE(UNIQUE(A1:A3,TRUE,TRUE))
But any combination of the formula removes the duplicates and I want to maintain them.


