V

【VBA】常用代码--连续重复去重

肉松 笔记 2019-01-25

Sub 去重()

//Dim AA11 As String

Dim i As Integer

For i = 216 To 1 Step -1

    If Cells(i, 2) = Cells(i - 1, 2) Then

    Rows(i).Delete

    End If

Next

End Sub

PREV
【VBA】常用代码--四舍五入
NEXT
【EXCEL】列宽和行高都设置为10,为什么单元格不是正方形?这个比例是多少