Bạn có thể dùng đoạn code saulamho27 đã viết:chào các bạn trong diển đàn,
em muốn 1 ô khi em đánh chử thường thì nó tự đổi thành chử in ,các bạn giúp giùm
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("A1:A100")) Is Nothing Then
Target.Value = Application.Proper(Application.Trim(Target.Value))
End If
End Sub
Thế sao ko quét chọn tất cả những cell chuẩn bị gõ vào rồi Ctrl + I
Trường hợp này mà code thì hơi.. bùn... hi.. hi..
ANH TUẤN
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Value = UCase(Target.Value)
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("A1:A100")) Is Nothing Then
Target.Value = UCase(Application.Trim(Target.Value))
End If
End Sub