• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Help to change the lower case to upper case of character

sampath

Member
Hello,

my request is when enter the character in a cell, which will automatically change in uppercase. could you help me for this request.

Regards,
Sampath.S
 
If it is for a specified range say A5:D10
you could use a small piece of VBA code as such

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

If Intersect(Target, Range("A5:D10")) Is Nothing Then Exit Sub

Target.Value = UCase(Target.Text)

End Sub

Copy and place it in the Worksheet Module of the worksheet in VBA

Alternatively you could use some data validation to warn you that the cell isn't in Upper case
 
Back
Top