Finding duplicate rows in excel

后端 未结 2 1988
梦毁少年i
梦毁少年i 2021-01-11 13:24

I have an excel spreadsheet with two rows. One is for name, and the other is for id. Is there any way i can find the rows that have the exact same id and allow me to easily

相关标签:
2条回答
  • 2021-01-11 14:00

    In the third column you could add this formula (cell B3 example) :

    =IF(COUNTIF(B$2:B$7,"="&B2)>1,"<--Dup!","") 
    

    You will have to adjust the range B$2:B$7 to reflect the actual data range...

    0 讨论(0)
  • 2021-01-11 14:16

    The absolute fastest and easiest way. Conditional formatting, highlight duplicates (on the ID column). Then filter the column (presumably in a table) by the coloring (above the check boxes).

    0 讨论(0)
提交回复
热议问题