Thanks in advance for reading this 
I have multiple inventory sheets, each has a column with a formula to flag duplicates within a specific column:
=IF(ISBLANK([Serial Number]1), "blank", IF(COUNTIF([Serial Number]:[Serial Number], [Serial Number]1) > 1, "yes", "no"))
Form there, I apply some simple conditional formatting and all is well. My question is this; has anyone figured out how to search for duplicates in entire columns between two different sheets?