I'm looking to list duplicate values from another tab on my sheet. I have the formula below and it's almost complete. I need help with the formula only returning duplicate cells and how many occurrences.
Right now it will list out every cell in the column followed the number of occurrences in the next column to the right. I want it to show me just the cells where the number is greater than 1.
Any help would be appreciated!
=IFNA(ArrayFormula(
{
unique(filter(Completed!E2:E,Completed!E2:E<>"")),
COUNTIF(filter(Completed!E2:E,Completed!E2:E<>""),unique(filter(Completed!E2:E,Completed!E2:E<>"")))
}),"")
Here's an example of what it shows currently:
| 12345 | 1 |
| 01234 | 1 |
| 56789 | 2 |
Here's what I'd like it to return instead:
| 56789 | 2 |