ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,699
- Office Version
- 2007
- Platform
- Windows
Hi,
As per title force text in worksheet cell to uppercase.
I have this in worksheet change event but its not doing anything.
I type cash BUT it doesnt change to CASH do you see why.
Thanks
As per title force text in worksheet cell to uppercase.
I have this in worksheet change event but its not doing anything.
I type cash BUT it doesnt change to CASH do you see why.
Thanks
Rich (BB code):
If Intersect(Target, Range("L14:L18")) Is Nothing Then Exit Sub
Application.EnableEvents = False
Target.Value = UCase(Target.Value)
Application.EnableEvents = True