I have a range data in A1:E10 with headers in the first row. I want to delete rows that have duplicate data in columns D and E.
In Excel 2010, I’m able to succinctly accomplish this task with:
Range(“A1:E10”).RemoveDuplicates Columns:=Array(4,5),Header:=xlYes
I’m trying to accomplish the same thing in Excel 1997-2003 (Ver.11). My brutal efforts to do so employ For, If, AND statements. Is there something better than that reaches this far back for this version?
In Excel 2010, I’m able to succinctly accomplish this task with:
Range(“A1:E10”).RemoveDuplicates Columns:=Array(4,5),Header:=xlYes
I’m trying to accomplish the same thing in Excel 1997-2003 (Ver.11). My brutal efforts to do so employ For, If, AND statements. Is there something better than that reaches this far back for this version?