Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi,
If a user is entering any Text ,I want to convert all text in CAPS automatically. -- Cheers! Ashish Srivastava |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column 4 Then Exit Sub On Error GoTo ErrHandler Application.EnableEvents = False Target.Formula = UCase(Target.Formula) ErrHandler: Application.EnableEvents = True End Sub As written Works on columns A:D only. Change the 4 to a higher number for more columns. This is event code. Right-click on the sheet tab and "View Code". Copy/paste the code into that sheet module. Gord Dibben MS Excel MVP On Thu, 11 Oct 2007 21:41:01 -0700, Ashish Srivastava wrote: Hi, If a user is entering any Text ,I want to convert all text in CAPS automatically. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert names into initial caps | New Users to Excel | |||
Convert all caps to lower case | New Users to Excel | |||
HOW DO I CONVERT NORMAL TEXT INTO ALL CAPS? | Excel Worksheet Functions | |||
How can I convert all Caps to first letter caps in Excel? | Excel Worksheet Functions | |||
In excel, how do you convert to caps? | Excel Discussion (Misc queries) |