Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Greetings,
Please excuse the cross posting, I wasn't sure if this is a programming, a function or a misc question. Is there any way to get a cell to change the input to uppercase? If so, how many ways are there? TIA -Minitman |
#2
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The obvious way
Private Sub Worksheet_Change(ByVal Target As Range) On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, Me.Range("A1:H10")) Is Nothing Then With Target .Value = UCase(.Value) End With End If ws_exit: Application.EnableEvents = True End Sub worksheet code module. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Minitman" wrote in message ... Greetings, Please excuse the cross posting, I wasn't sure if this is a programming, a function or a misc question. Is there any way to get a cell to change the input to uppercase? If so, how many ways are there? TIA -Minitman |
#3
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
There is no need for the cross posting, and I think that is borne
out in your apology that it was unnecessary. Same people in all these groups. If you want more than one solution you simply mention that, which you did. See http://www.mvps.org/dmcritchie/excel/proper.htm#upper for worksheet and for programming solutions both macro and event macro. --- HTH, David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001] My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm Search Page: http://www.mvps.org/dmcritchie/excel/search.htm "Minitman" wrote in message ... Greetings, Please excuse the cross posting, I wasn't sure if this is a programming, a function or a misc question. Is there any way to get a cell to change the input to uppercase? If so, how many ways are there? TIA -Minitman |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
in xl
=UPPER(A1) in vba range("A1").Value = UCase(range("A1").Value) -----Original Message----- Greetings, Please excuse the cross posting, I wasn't sure if this is a programming, a function or a misc question. Is there any way to get a cell to change the input to uppercase? If so, how many ways are there? TIA -Minitman . |
#5
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Guys,
That helps. -Minitman On Thu, 29 Apr 2004 17:28:39 +0100, "Bob Phillips" wrote: The obvious way Private Sub Worksheet_Change(ByVal Target As Range) On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, Me.Range("A1:H10")) Is Nothing Then With Target .Value = UCase(.Value) End With End If ws_exit: Application.EnableEvents = True End Sub worksheet code module. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change Text Color in one cell based upon entry in referenced cell | Excel Discussion (Misc queries) | |||
change cell values of to reflect most current entry in a range | Excel Worksheet Functions | |||
Change colour of cells depending on entry in one cell | Excel Worksheet Functions | |||
How do I change cell color upon entry, and exit? | Excel Worksheet Functions | |||
Make cell entry event change another cell? | Excel Programming |