What I am trying to do is run the code below for the same worksheet.
The problem is Excel will only allow me to run one or the other.
I want them to work at the same time.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("A1:A5")) Is Nothing Or Target.Cells.Count > 1 Then Exit Sub
Application.EnableEvents = False
Target.Value = UCase(Target.Value)
Application.EnableEvents = True
If Intersect(Target, Range("B1:B5")) Is Nothing Or Target.Cells.Count > 1 Then Exit Sub
Application.EnableEvents = False
Target.Value = Application.Proper(Target.Value)
Application.EnableEvents = True
End Sub
Any help is greatly appreciated
Bookmarks