D
Duncan_J
Hi Folks I use this to find me dups, I just highlight the Column and go:
Sub FixDuplicateRows()
Dim RowNdx As Long
Dim ColNum As Integer
ColNum = Selection(1).Column
For RowNdx = Selection(Selection.Cells.Count).Row To _
Selection(1).Row + 1 Step -1
If Cells(RowNdx, ColNum).Value = Cells(RowNdx - 1, ColNum).Value Then
Cells(RowNdx, ColNum).Value = ""
End If
Next RowNdx
End Sub
However, if I have a number in row 2 and row 10 it doesn't get ride of the
number. With the marco I'm using the number has to be directly below it..
Anyone got a fix?
Thanks
DJ
Sub FixDuplicateRows()
Dim RowNdx As Long
Dim ColNum As Integer
ColNum = Selection(1).Column
For RowNdx = Selection(Selection.Cells.Count).Row To _
Selection(1).Row + 1 Step -1
If Cells(RowNdx, ColNum).Value = Cells(RowNdx - 1, ColNum).Value Then
Cells(RowNdx, ColNum).Value = ""
End If
Next RowNdx
End Sub
However, if I have a number in row 2 and row 10 it doesn't get ride of the
number. With the marco I'm using the number has to be directly below it..
Anyone got a fix?
Thanks
DJ