connhangheo
Thành viên thường trực
- Tham gia
- 18/5/07
- Bài viết
- 214
- Được thích
- 225
- Nghề nghiệp
- Sinh Viên
PHP:
Private Sub CommandButton1_Click()
Dim i As Integer, j As Integer, lrow As Integer
Sheets("data").Select
Rows("1:1").Select
Bác nào giải thích giúp em vì sao lại xảy ra lỗi này với. Thanks.
Đây là toàn bộ code:
PHP:
Private Sub CommandButton1_Click()
Dim i As Integer, j As Integer, lrow As Integer
Sheets("data").Select
Rows("1:1").Select
Selection.AutoFilter
lrow = Range("A65432").End(xlUp).Row
Range("A1:H" & lrow).Sort Key1:=Range("A1"), Order1:=xlAscending, Header:= _
xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
For i = 2 To lrow
If Cells(i, 1) = Cells(i + 1, 1) And Cells(i, 2) = Cells(i + 1, 2) And Cells(i, 8) = Cells(i + 1, 8) Then
Rows(i + 1).Delete
End If
Next i
Sheets("adjust").Select
For j = lrow + 2 To 1500
If Cells(i, 1) = 0 Then
Rows(i).Delete
End If
Next j
End Sub