Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Lowercase to uppercase

Can I change a worksheet with all lowercase to uppercase?
--
Deborah Motte
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 112
Default Lowercase to uppercase

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Lowercase to uppercase

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 103
Default Lowercase to uppercase

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing uppercase to lowercase Paul K. Excel Discussion (Misc queries) 4 August 18th 06 11:46 AM
How do I do a global change from uppercase to lowercase? Instrument Guy Excel Discussion (Misc queries) 2 February 17th 06 08:20 PM
uppercase to lowercase Missy Excel Worksheet Functions 1 February 3rd 05 09:10 PM
lowercase to uppercase Louise Excel Worksheet Functions 6 January 10th 05 09:41 PM
uppercase to lowercase Mammoth Excel Discussion (Misc queries) 3 November 28th 04 03:19 AM


All times are GMT +1. The time now is 04:36 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"