View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
David Jacobs David Jacobs is offline
external usenet poster
 
Posts: 1
Default Comparing and deleting duplicate cells

I am trying to compare the contents of a cell and the one below it. If it
is the same then delete the upper one.Have come up with this (please don't
laugh):

For cellcount = 1 To 500
If Cells(B, cellcount) = Cells(B, cellcount + 1) Then
Cells(B, cellcount).Delete (xlShiftUp)
End If
Next

Have absolutely no idea about Excel Macro's but am keen to learn, in fact
this is my first shot so if someone could help with answers in one
syllable!!

FIA

David Jacobs