Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I am creating a data sheet to be completed by other users. I would like to
format the text cells (name, etc) to have text entered as uppercase automatically although the user might use title or lower case. UPPER function cannot make cell look at itself and perform the function Excel 2003 |
#2
![]() |
|||
|
|||
![]()
Santie
"Automatic" would require VBA code. Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Target.Column 8 Then Exit Sub On Error GoTo ErrHandler Application.EnableEvents = False Target.Formula = UCase(Target.Formula) ErrHandler: Application.EnableEvents = True End Sub Right-click on the sheet tab and "View Code". Copy/paste the above code into that module. Note: as written it operates only on Columns A through H. Change the 8 to something else if you require more or less columns. Gord Dibben Excel MVP On Tue, 22 Feb 2005 01:25:02 -0800, Santie wrote: I am creating a data sheet to be completed by other users. I would like to format the text cells (name, etc) to have text entered as uppercase automatically although the user might use title or lower case. UPPER function cannot make cell look at itself and perform the function Excel 2003 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I get the font color to change automatically depending on | Excel Discussion (Misc queries) | |||
how do I change the text case of imported data in excel? | Excel Discussion (Misc queries) | |||
how do i make a date change automatically if i change one before . | Excel Discussion (Misc queries) | |||
How can I automatically change the font color of text in cells th. | Excel Discussion (Misc queries) | |||
How to change text in multiple cells from Uppercase to proper cas. | Excel Worksheet Functions |