I have a large amount of data that is supposed to be unique based on two columns (Column A, Column B). The combination of these two columns are not supposed to contain any duplicates. Columns C - Q can contain duplicates. What I need is a macro to run that will find any duplicates based on the values in Column A and Column B and if found, delete the duplicate row.
Example:
Column A Column B Column C Column D
00001 AAAA1 xxxx yyyy
00001 BBBB1 xxxx xxxx
00001 BBBB2 yyyy yyyy
00002 AAAA1 yyyy xxxx
00002 AAAA1 yyyy xxxx
00003 AAAA1 xxxx yyyy
I would need it to identify and delete the second row of 00002, AAAA1, yyyy, xxxx and leave all other rows alone as none are true duplicates based on comparing Column A and Column B.
The data this macro needs to compare is sorted by Column A, then Column B. There are over 14,000 rows in the spreadsheet. Any ideas?

