D
Danny
Try this macro:
Macro MUST be in the SHEET
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
'Make sure to identify the Range(s)
If Not Application.Intersect(Target, Range("A1:A20")) Is
Nothing Then
Target(1).Value = UCase(Target(1).Value)
End If
Application.EnableEvents = True
End Sub
Macro MUST be in the SHEET
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
'Make sure to identify the Range(s)
If Not Application.Intersect(Target, Range("A1:A20")) Is
Nothing Then
Target(1).Value = UCase(Target(1).Value)
End If
Application.EnableEvents = True
End Sub