• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. S

    REMOVING DUPLICATES IN A COLUMN WITHOUT EFFECTING OTHER COLUNMS

    Hi Luke M, If i am not wrong he asking to compare the column not row...
  2. S

    REMOVING DUPLICATES IN A COLUMN WITHOUT EFFECTING OTHER COLUNMS

    Use simple below coding... Sub proTEST() For i = 1 To Application.WorksheetFunction.CountA(Range("A:A")) If ActiveCell.Value = ActiveCell.Offset(0, 1).Value Then ActiveCell.ClearContents End If ActiveCell.Offset(1, 0).Select Next End Sub Best Wishes from...
Back
Top