在excel中,怎么样可以查找到一列中重复的数据并把重复的数据所在的行整行删除?

2024-12-12 21:45:27
推荐回答(4个)
回答1:

在网上找了个 看看是否能用

用宏处理这样的问题相对方便一点,有兴趣试试:

一、按ALT+F11 打开VB编辑器

二、双击左边靠上的【工程资源管理器】中的【MS Excel 对象】中的ThisWorkbook,在右边的代码窗口贴入下面的代码:

Sub 删除重复数据()
'以col列为条件删除的重复行数据
'本例是删除标题为sheet1的EXCEL表中以A列(从A2单元格开始)为条件的重复韩国数据
Application.ScreenUpdating = False
'可根据实际情况修改下面三行的结尾值
Dim sheetsCaption As String: sheetsCaption = "Sheet1"
Dim Col As String: Col = "A"
Dim StartRow As Integer: StartRow = 2

'以下不需要修改
Dim EndRow As Integer: EndRow = Sheets(sheetsCaption).Range(Col & "65536").End(xlUp).Row
Dim Count_1 As Integer: Count_1 = 0
Dim count_2 As Integer: count_2 = 0
Dim i As Integer: i = StartRow

With Sheets(sheetsCaption)

Do
Count_1 = Count_1 + 1
For j = StartRow To i - 1
If .Range(Col & i) = .Range(Col & j) Then
Count_1 = Count_1 - 1
.Range(Col & i).EntireRow.Delete
EndRow = Sheets(sheetsCaption).Range(Col & "65536").End(xlUp).Row
i = i - 1
count_2 = count_2 + 1
Exit For
End If
Next
i = i + 1
Loop While i < EndRow + 1
End With

MsgBox "共有" & Count_1 & "条不重复的数据"
MsgBox "删除" & count_2 & "条重复的数据"
Application.ScreenUpdating = True
End Sub

三、回到EXCEL表,运行菜单 【工具】-【宏】-【宏】,选择 删除重复数据 这条宏,然后按执行。

回答2:

简单用countif即可实现,如图

回答3:

数据-高级筛选-区域中选择要筛选的单元区域-下面有勾选-不重复-确定

能不能用VBA实现呢? 因为有很多,想用个简单的方法,谢谢啊!
回答你,这挺简单的
用下面代码

Sub Slt() '不重复值
Dim dic As Object
Dim arr, k%
Set dic = CreateObject("Scripting.Dictionary")
arr = Range("A1", [A65536].End(3))
For k = 1 To UBound(arr)
dic(arr(k, 1)) = ""
Next
Range("a1:k1000").Clear
arr = dic.keys
[a1].Resize(dic.Count) = Application.Transpose(arr)
dic.RemoveAll
Erase arr
End Sub

回答4:

假如a,b,a,c在A列,右边的数字在B列。
C1=IF(COUNTIF($A$1:A1,A1)=2,1,0),鼠标放在C1右下角,变成十字后双击。
选C列,数据-筛选-自动筛选,下拉菜单中选1,然后删除所有为1 的行。
-----
补充
Sub test()
Dim i As Integer
Dim j As Integer
i = Range("A65536").End(xlUp).Row
For j = i To 1 Step -1
If Application.WorksheetFunction.CountIf(Range("a:a"), Cells(j, 1)) >= 2 Then
Cells(j, 1).EntireRow.Delete
End If
Next
End Sub