Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can I change a worksheet with all lowercase to uppercase?
-- Deborah Motte |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello Deborah
How about a little macro to do this? Sub ChangeIntoUpper() For Each c In ActiveSheet.UsedRange c.Value = UCase(c.Value) Next c End Sub HTH Cordially Pascal "workingwoman" a écrit dans le message de news: ... Can I change a worksheet with all lowercase to uppercase? -- Deborah Motte |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would alter this macro as such.
Sub ChangeIntoUpper() For Each c In ActiveSheet.UsedRange c.Formula = UCase(c.Formula) Next c End Sub Otherwise, if there are any formulas in the range, they would be changed to values only. Gord Dibben MS Excel MVP On Fri, 14 Sep 2007 15:17:22 +0200, "papou" wrote: Hello Deborah How about a little macro to do this? Sub ChangeIntoUpper() For Each c In ActiveSheet.UsedRange c.Value = UCase(c.Value) Next c End Sub HTH Cordially Pascal "workingwoman" a écrit dans le message de news: ... Can I change a worksheet with all lowercase to uppercase? -- Deborah Motte |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
workingwoman
You could try upper(). This could be kind of a pain as you would have to mirror the document. The macro, if works(I don't do VBA), is probably better. God Bless Frank Pytel "workingwoman" wrote: Can I change a worksheet with all lowercase to uppercase? -- Deborah Motte |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Changing uppercase to lowercase | Excel Discussion (Misc queries) | |||
How do I do a global change from uppercase to lowercase? | Excel Discussion (Misc queries) | |||
uppercase to lowercase | Excel Worksheet Functions | |||
lowercase to uppercase | Excel Worksheet Functions | |||
uppercase to lowercase | Excel Discussion (Misc queries) |