I am using this code for column C. I would like to also apply it to column H. Does anyone know how to do that?
I tried a bunch of changes to the code but could not get it to work. Thank you.
VBA Code:
'auto capitalization for all letters in the cell
If Intersect(Target, Range("C:C")) Is Nothing Then Exit Sub
Application.EnableEvents = False
Target.Value = UCase(Target.Value)
Application.EnableEvents = True
I tried a bunch of changes to the code but could not get it to work. Thank you.