Tôi dùng Excel 2007 và có lưu lại 1 macro về lọc duy nhất (RemoveDuplicates) theo code sau:
Nhưng khi tôi chọn Option Base 1 thì code báo lỗi tại dòng
Mặc định Option Base 0 thì không sao.
Vậy có cách gì dùng code trên mà vẫn dùng Option Base 1 được không.
Xin cám ơn!
PHP:
Option Explicit
''Option Base 1'
Dim endR As Long, myRng As Range
Sub RemoveDuplicates()
Sheet1.Select
endR = Cells(65000, 1).End(xlUp).Row
Set myRng = Range(Cells(1, 1), Cells(endR, 2))
With myRng
.RemoveDuplicates Columns:=Array(1, 2), Header:=xlYes
End With
Set myRng = Nothing
End Sub
PHP:
.RemoveDuplicates Columns:=Array(1, 2), Header:=xlYes
Vậy có cách gì dùng code trên mà vẫn dùng Option Base 1 được không.
Xin cám ơn!
File đính kèm
Lần chỉnh sửa cuối: