View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_2_] Dave Peterson[_2_] is offline
external usenet poster
 
Posts: 420
Default Deleting Duplicate Rows with Same Sum?

Add a new column D.
Put this in D1:
=countif(c$1:c1,c1)
and drag down

Now add a new row 1 to use for headers.
Apply Data|filter|autofilter to column D

Show only those values that are not equal to 1.

Delete the visible rows

Delete column D and remove the filter if it's still there.





On 03/29/2011 14:38, Mike wrote:
Hi everyone,

Say I have this in Excel sheet:
A B C
1. 1 1 2
2. 1 2 3
3. 2 3 5
4. 1 1 2

I want row #4 to go. Best way? Thanks...

Mike


--
Dave Peterson