I am trying to identify the duplicates of the content below based on the Quote/Order Number first and the Quote/Order Line Number second. You can see that there are multiple entries for lines 1 and 2 for both quotes 415012 and 415102. The source data pulled in twice, and some of the formatting in other columns is inconsistent which is why we only want to look at the two columns listed.
I've tried various forms of the COUNTIFS, but they recognize everything as a duplicate. I've searched this community as well as Reddit with no luck. Here is the latest formula I tried:
=IF(COUNTIFS([Quote/Order Number]:[Quote/Order Number], @cell = [Quote/Order Number]@row, [Quote/Order Line Number]:[Quote/Order Line Number], @cell = [Quote/Order Line Number]@row) > 1, 1)