|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
本帖最后由 liulang0808 于 2025-3-31 19:18 编辑
Sub test()
Set sh = Sheets("原始表")
Set d = CreateObject("scripting.dictionary")
arr = sh.UsedRange
For j = 2 To UBound(arr)
d(arr(j, 2)) = d(arr(j, 2)) & "," & j
Next j
Application.ScreenUpdating = False
sh.Copy after:=Sheets(1)
Sheets(2).Name = "结果1"
Sheets(2).Columns(1).Insert
sh.Copy after:=Sheets(1)
Sheets(2).Name = "结果2"
Sheets(2).Columns(1).Insert
x = 2
y = 0
Set Rng = Nothing
For Each k In d.keys
brr = Split(d(k), ",")
If UBound(brr) >= 2 Then
y = y + 1
x = x + 1
If x >= 56 Then x = 3
Sheets("结果1").Cells(Val(brr(1)), 3).AddComment "共重复次数为:" & UBound(brr)
Sheets("结果2").Cells(Val(brr(1)), 3).AddComment "共重复次数为:" & UBound(brr)
For j = 1 To UBound(brr)
Sheets("结果1").Cells(Val(brr(j)), 1) = y
Sheets("结果1").Cells(Val(brr(j)), 3).Interior.ColorIndex = x
Sheets("结果2").Cells(Val(brr(j)), 1) = y
Sheets("结果2").Cells(Val(brr(j)), 3).Interior.ColorIndex = x
If j > 1 Then
If Rng Is Nothing Then
Set Rng = Sheets("结果2").Cells(Val(brr(j)), 1)
Else
Set Rng = Union(Rng, Sheets("结果2").Cells(Val(brr(j)), 1))
End If
End If
Next j
End If
Next k
If Not Rng Is Nothing Then Rng.EntireRow.Delete
Application.ScreenUpdating = True
End Sub
|
评分
-
1
查看全部评分
-
|