thanh tong
Thành viên hoạt động
- Tham gia
- 27/5/10
- Bài viết
- 122
- Được thích
- 11
Các bạn xem hộ mình xem code sau sai ở đâu?
Private Sub Worksheet_Change(ByVal Target As Range)
Dim n As Integer
For n = 1 To 100
If Target.Row = n And Not IsEmpty(Target) And Selection.Count = 1 Then
If Application.CountIf(Rows(n), Trim(Right(Target.Value, Len(Target.Value) - Application.Find("-", Target.Value)))) > 1 Then
Target.ClearContents
Target.Select
Else
Exit Sub
End If
End If
Next
End Sub
Cảm ơn các bạn
Private Sub Worksheet_Change(ByVal Target As Range)
Dim n As Integer
For n = 1 To 100
If Target.Row = n And Not IsEmpty(Target) And Selection.Count = 1 Then
If Application.CountIf(Rows(n), Trim(Right(Target.Value, Len(Target.Value) - Application.Find("-", Target.Value)))) > 1 Then
Target.ClearContents
Target.Select
Else
Exit Sub
End If
End If
Next
End Sub
Cảm ơn các bạn
Lần chỉnh sửa cuối: