I'm trying to create a formula that will return a value if criteria from two different columns are duplicates within their own columns. It would look at Column A and look for duplicates. If it finds a duplicate, it then looks at Column B to see if the rows that meet that criteria have a duplicate. If it finds a duplicate, it checks the box in a separate column. Column A will not be a duplicate of Column B. They will be different duplicates.
Both formulas work on their own, but together, UNPARSEABLE. Here is what I have:
=COUNTIFS([Column A]:[Column A], [Column A]@row) > 1), ([Column B]:[Column B], [Column B]@row) > 1)