Forum Discussion

smc1906's avatar
smc1906
Copper Contributor
Feb 07, 2024
Solved

Identify duplicate values based on another column

Hi,   I have a table that contains an export from three separate databases. The first column identifies the database (e.g. A, B or C). I need to identify where an email address exists in more than ...
  • OliverScheurich's avatar
    OliverScheurich
    Feb 07, 2024

    smc1906 

    =IF(COUNTA(UNIQUE(FILTER($B$2:$B$13,$D$2:$D$13=D2)))>1,TRANSPOSE(UNIQUE(FILTER($B$2:$B$13,$D$2:$D$13=D2))),"")

     

    You are welcome. This formula should return the required result. For example email3 occurs two times in database A and isn't recognised as a duplicate. Email2 is twice in database A and once in database C as is returned as a duplicate.

Resources