Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need a code that will search a range (say, A1:A10) and convert everything
in that range to all caps? -- Thanks Shawn |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try
Sub Macro() Dim cell As Range For Each cell In Range("A1:A10") If Not cell.HasFormula Then cell.Value = UCase(cell.Value) Next End Sub -- Jacob "Shawn" wrote: I need a code that will search a range (say, A1:A10) and convert everything in that range to all caps? -- Thanks Shawn |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Jacob Many thanks Your code works great "Jacob Skaria" wrote: Try Sub Macro() Dim cell As Range For Each cell In Range("A1:A10") If Not cell.HasFormula Then cell.Value = UCase(cell.Value) Next End Sub -- Jacob "Shawn" wrote: I need a code that will search a range (say, A1:A10) and convert everything in that range to all caps? -- Thanks Shawn |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to change small letters to capital letters | Excel Discussion (Misc queries) | |||
how do i turn all letters into capital letters? | Excel Discussion (Misc queries) | |||
Capital Letters Only | Excel Discussion (Misc queries) | |||
Capital Letters | Excel Programming | |||
Capital Letters | Excel Worksheet Functions |