R
Ruslan
I was trying to make characters appeared in some cell range to be only small.
Some generous people provided me with the following event code:
Private Sub Worksheet_Change(ByVal Target As Range)
which I put in "View Code" section of my sheet within VB. But unfortunately
it didn't affected the file (as it seems). In other words, it still doesn't
make characters small
when you write them large in those cells. What did I miss ?
Ruslan
Some generous people provided me with the following event code:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("I1:I100")) Is Nothing Then
Target(1).Value = LCase(Target(1).Value)
End If
Application.EnableEvents = True
End Sub
which I put in "View Code" section of my sheet within VB. But unfortunately
it didn't affected the file (as it seems). In other words, it still doesn't
make characters small
when you write them large in those cells. What did I miss ?
Ruslan