Hỏi cách sort trước khi validation

Liên hệ QC

Tường_Vi

Thành viên tiêu biểu
Tham gia
19/4/10
Bài viết
482
Được thích
121
Nghề nghiệp
Luôn tìm kiếm một vị trí tốt hơn
Em đang thử tạo code nhưng thấy báo lỗi tại
PHP:
    .Sort [AA2], 1, , , , , , xlNo
code đủ
PHP:
  If Target.Column = 3 And Target.Row > 6 Then
    With Sheet1.Range("AA2:AD" & [AA10000].End(xlUp).Row)
    .Sort [AA2], 1, , , , , , xlNo
    End With
    With Target.Validation
    .Delete
    .Add 3, , , "=VSL"
    .IgnoreBlank = True
    .ShowError = True
    .ShowInput = True
    .ErrorMessage = "Wrong Vsl ,re-type"
    End With
  End If

Xin các Huynh chỉ giúp
 
Em đang thử tạo code nhưng thấy báo lỗi tại
PHP:
    .Sort [AA2], 1, , , , , , xlNo
code đủ
PHP:
  If Target.Column = 3 And Target.Row > 6 Then
    With Sheet1.Range("AA2:AD" & [AA10000].End(xlUp).Row)
    .Sort [AA2], 1, , , , , , xlNo
    End With
    With Target.Validation
    .Delete
    .Add 3, , , "=VSL"
    .IgnoreBlank = True
    .ShowError = True
    .ShowInput = True
    .ErrorMessage = "Wrong Vsl ,re-type"
    End With
  End If
Xin các Huynh chỉ giúp
Bạn sửa lại như thế này xem:
PHP:
  If Target.Column = 3 And Target.Row > 6 Then 
    With Sheet1.Range("AA2:AD" & Sheet1.[AA10000].End(xlUp).Row)
    ......


 
Upvote 0
Web KT

Bài viết mới nhất

Back
Top Bottom