Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is one way, using column A as the target column. The code goes into
the Sheet code module. Right click the sheet tab and select view code to open the code windowl Private Sub Worksheet_Change(ByVal Target As Range) If Target.Cells.Count 1 Then Exit Sub If Not Intersect(Target, Range("A:A")) Is Nothing Then Target.Value = UCase(Target.Value) End If End Sub "Doug" wrote in message ... I have a column that I want it to always show caps when I type in text. How can I set the formatting for this? Thanks -- |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Capitals | Excel Discussion (Misc queries) | |||
Cosmetics Capitals | Excel Worksheet Functions | |||
All Capitals | Excel Worksheet Functions | |||
Text All Capitals | New Users to Excel | |||
Forced Capitals | Excel Programming |