Finding duplicate rows in excel

后端 未结 2 2013
梦毁少年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...

提交回复
热议问题