R
Richard
This code worked fine for a while, then stopped working. I
put it in the Workbook SelectChange. Should it be in the
Worksheet SelectChange or does it matter. How can I insure
this code will work.
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("a:i")) Is
Nothing Then
Target(1).Value = UCase(Target(1).Value)
End If
Application.EnableEvents = True
Thanks in advance
put it in the Workbook SelectChange. Should it be in the
Worksheet SelectChange or does it matter. How can I insure
this code will work.
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("a:i")) Is
Nothing Then
Target(1).Value = UCase(Target(1).Value)
End If
Application.EnableEvents = True
Thanks in advance