Another way is to use VBA. Right click the sheet tab>View Code and paste the
below code...Get back to workbook and try in that sheet..What ever you type
in will turn to upper case...
Private Sub Worksheet_Change(ByVal Target As Range)
Target = UCase(Target)
End Sub
PS: If you dont find this working set the Security level to low/medium in
(Tools|Macro|Security). and retry after restarting the application.
To do it as you type and to prevent any formula you type being converted to
values try this
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
Target.Formula = UCase(Target.Formula)
End Sub
Mike
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.