I've tried this a few different ways and can't seem to get the result that I want. I'm trying to determine if the serial numbers in a row (up to 3) also appear anywhere else in the sheet. Here is where I'm currently at, but it only works if there is only one serial in the row.
=IF(COUNTIFS([Serial #1]:[Serial #1], <>"", [Serial #1]:[Serial #1], [Serial #1]@row) + COUNTIFS([Serial #2]:[Serial #2], <>"", [Serial #2]:[Serial #2], [Serial #2]@row) + COUNTIFS([Accessory Serial #]:[Accessory Serial #], <>"", [Accessory Serial #]:[Accessory Serial #], [Accessory Serial #]@row) > 1, 1, 0)
Serial #1 may appear as a duplicate in either Serial #1 or Serial #2 columns. Same for Serial #2. Accessory Serial # will only appear as a duplicate in the Accessory Serial # column.
Any ideas on if I can accomplish this with one duplicate checkbox?