k i guess i didn't explain well. I have multiple columns (i.e. one for first name, one for last name, one for address, and one for phone numbers.) Now if i run a formula or a filter. If it finds a duplicate number, i would like it to remove the number and everything in that row for that number.
the long formula posted here:
=COUNTA(A2:A2000)-SUM(IF(FREQUENCY(IF(A2:A2000<>"",MATCH("~"&A2:A2000,A2:A2000&"",0)),ROW(A2:A2000)-ROW(A2)+1),1))
gives me a count of how many duplicates there is. that is great that is what i need. now to remove those duplicates and put them in a new excel file. is that possible?? or once they have been removed they are gone, i just need to save under a different file name so i have files with no duplicates.