Forum Discussion

KinneretKatz's avatar
KinneretKatz
Copper Contributor
Jan 03, 2024
Solved

Delete Duplicates INCLUDING initial instance

I want to delete any data in my table that has a duplicate, including the first instance. For example, if my table is 

 

Maria

Gabriella

Maria

Estella

 

I want to be left with 

Gabriella

Estella

 

with ALL instances of Maria being removed. Every method I know for removing duplicates in Excel would leave the list with one unique Maria.

  • =UNIQUE(I9:I12;;TRUE)

     

    You can apply this formula with the names in cells I9:I12.

     

    EDIT:

    =UNIQUE(I9:I12,,TRUE)

    It's more likely that you are using commas instead of semi-colons i assume.

Resources