Hi,
For dyslexic people like me reading text that is mixed case is difficult so I found this script that was working great.
All of a sudden the script saved in my sheet(s) stopped working, on my main computer. When running on other computers the script still works.
I received an error after deleting some cells.
I closed and restarted Excel 2010 and now it will not work at all.
I do not think I changed any settings, however if I did which one would stop Private from Working?
For dyslexic people like me reading text that is mixed case is difficult so I found this script that was working great.
All of a sudden the script saved in my sheet(s) stopped working, on my main computer. When running on other computers the script still works.
I received an error after deleting some cells.
I closed and restarted Excel 2010 and now it will not work at all.
I do not think I changed any settings, however if I did which one would stop Private from Working?
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
Target.Value = UCase(Target.Value)
Application.EnableEvents = True
End Sub
Last edited: