I have a sheet we are using for attendance for multiple trainings. Each entry has a Row ID unique to that training and I want to identify duplicates of when an email entered multiple entries for one Row ID. I used the following formula in a text/number duplicate column but it is coming up with 0
=COUNTIFS([Email]:[Email], [Email]@row, [Row ID]:[Row ID], [Row ID]@row)
I tried to also make the duplicate a checkbox and use the following formula but it also isn't working. I appreciate the help.
=IF(COUNTIFS([Email]:[Email], [Email]@row, [Row ID]:[Row ID], [Row ID]@row) > 1, 1, 0)