“Kode VBA untuk menghapus duplikat dari kolom” Kode Jawaban

Kode VBA untuk menghapus duplikat dari kolom

 Sub removeDuplicate()
 'removeDuplicate Macro
 Columns("A:A").Select
 ActiveSheet.Range("$A$1:$A$117").RemoveDuplicates Columns:=Array(1), _ 
 Header:=xlNo 
 Range("A1").Select
 End Sub
ThevarRaj

Kode VBA untuk menghapus duplikat dari kolom

Sub dedupe_abcd()
    Dim icol As Long

    With Sheets("Sheet1")   '<-set this worksheet reference properly!
        icol = Application.Match("abcd", .Rows(1), 0)
        With .Cells(1, 1).CurrentRegion
            .RemoveDuplicates Columns:=icol, Header:=xlYes
        End With
    End With
End Sub
ThevarRaj

Jawaban yang mirip dengan “Kode VBA untuk menghapus duplikat dari kolom”

Pertanyaan yang mirip dengan “Kode VBA untuk menghapus duplikat dari kolom”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya