Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default change lower letters to upper letters

In the Excel, how to change all sentense from lower letters to upper letter
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 709
Default change lower letters to upper letters

Winnie, you can use the upper function, with text in column, in another
column put =UPPER(A1) and copy down, you can then copy that column and paste
special back over you data.

Or you could use a macro like this


Sub MAKE_ALL_CAPS()
'select your range and run this to change to all CAPS
Dim cel As Range
For Each cel In Intersect(Selection, _
ActiveSheet.UsedRange)
cel.Formula = UCase$(cel.Formula)
Next
End Sub


--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"Winnie" wrote in message
...
In the Excel, how to change all sentense from lower letters to upper

letter


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default change lower letters to upper letters

=UPPER(range)
--
Brevity is the soul of wit.


"Winnie" wrote:

In the Excel, how to change all sentense from lower letters to upper letter

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
Change the header columes back to letters not numbers Richard New Users to Excel 1 June 8th 06 11:56 PM
Change source text in Excel from all caps to upper and lower case. JoanS Excel Discussion (Misc queries) 2 December 16th 04 03:11 AM
changing lower case to upper case T. Campbell Excel Discussion (Misc queries) 1 December 8th 04 06:37 PM
change typed text to upper case CT Cameron Excel Discussion (Misc queries) 2 November 30th 04 02:07 AM
How do I change existing text from lower case to upper case CT Cameron Excel Discussion (Misc queries) 2 November 30th 04 02:07 AM


All times are GMT +1. The time now is 01:54 PM.

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

About Us

"It's about Microsoft Excel"