R
Ruslan
I was trying to make all characters entered in some cell range to be appeared
small by using the Event code provided by some generous people:
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
However, even though I put the mentioned code in "View code" section of my
sheet1 within Visual Basic (as I was advised) it seems that it did not not
affected the excel file. in other words, large characters in those cells
remain large.
What did I miss?...Should I do smth additional?...My knowledge of VB is
poor, cold someone assist me in this matter?
small by using the Event code provided by some generous people:
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
However, even though I put the mentioned code in "View code" section of my
sheet1 within Visual Basic (as I was advised) it seems that it did not not
affected the excel file. in other words, large characters in those cells
remain large.
What did I miss?...Should I do smth additional?...My knowledge of VB is
poor, cold someone assist me in this matter?