C
Chance
Is this the correct way to do upper case?
Is there a simple way like conditional formatting?
Should the Application.EnableEvents be false then back to
true? Why? Can anyone break this down for me?
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("a:j")) Is
Nothing Then
Target(1).Value = UCase(Target(1).Value)
End If
Application.EnableEvents = True
End Sub
Is there a simple way like conditional formatting?
Should the Application.EnableEvents be false then back to
true? Why? Can anyone break this down for me?
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("a:j")) Is
Nothing Then
Target(1).Value = UCase(Target(1).Value)
End If
Application.EnableEvents = True
End Sub