Thread: Capitals
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
JLGWhiz[_2_] JLGWhiz[_2_] is offline
external usenet poster
 
Posts: 1,565
Default Capitals

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
--