Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If I write anything in a cell, that should be capital letter automatically.
how can I do it. Suggest me. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Without VBA:
use the CAPSLOCK key With VBA, enter the following macro in the worksheet event code area: Private Sub Worksheet_Change(ByVal Target As Range) Set r = Target Application.EnableEvents = False If Application.WorksheetFunction.IsText(r) Then r.Value = UCase(r.Value) End If Application.EnableEvents = True End Sub -- Gary''s Student - gsnu200753 "capital letter" wrote: If I write anything in a cell, that should be capital letter automatically. how can I do it. Suggest me. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to recognise a small letter as being different to a capital le | Excel Discussion (Misc queries) | |||
New Validation option to format 1st letter as Capital letter | Excel Discussion (Misc queries) | |||
Default Capital letter for 1st letter of a word | Excel Discussion (Misc queries) | |||
Turn to capital letter | Excel Discussion (Misc queries) | |||
Countif a small or capital letter | Excel Worksheet Functions |