Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
Don Don is offline
external usenet poster
 
Posts: 21
Default Change Lowercase or Proper to ALL CAPS

How do I change all lowercase or Proper formatted cells to ALL CAPS?

Don


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Change Lowercase or Proper to ALL CAPS

Dim cell as Range
for each cell in selection.SpecialCells(xlConstants,xlTextValues)
cell.Value = Ucase(cell.value)
Next

would be the basic approach.

--
Regards,
Tom Ogilvy

"Don" wrote in message
...
How do I change all lowercase or Proper formatted cells to ALL CAPS?

Don



  #3   Report Post  
Posted to microsoft.public.excel.programming
Don Don is offline
external usenet poster
 
Posts: 21
Default Change Lowercase or Proper to ALL CAPS

Thanks Tom........and if needing to change it to "Proper"?

Don
"Tom Ogilvy" wrote in message
...
Dim cell as Range
for each cell in selection.SpecialCells(xlConstants,xlTextValues)
cell.Value = Ucase(cell.value)
Next

would be the basic approach.

--
Regards,
Tom Ogilvy

"Don" wrote in message
...
How do I change all lowercase or Proper formatted cells to ALL CAPS?

Don





  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Change Lowercase or Proper to ALL CAPS

Don,

Try

cell.Value = StrConv(cell.Value, vbProperCase)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
www.cpearson.com
(email address is on the web site)

"Don" wrote in message
...
Thanks Tom........and if needing to change it to "Proper"?

Don
"Tom Ogilvy" wrote in message
...
Dim cell as Range
for each cell in selection.SpecialCells(xlConstants,xlTextValues)
cell.Value = Ucase(cell.value)
Next

would be the basic approach.

--
Regards,
Tom Ogilvy

"Don" wrote in message
...
How do I change all lowercase or Proper formatted cells to ALL CAPS?

Don







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
How do I change date that is in All Caps to proper format? jsintay1231 Excel Worksheet Functions 1 January 22nd 10 07:23 PM
How do I change from all caps to proper case? Tom III Excel Discussion (Misc queries) 6 May 30th 07 05:54 AM
Is there a way to change Lowercase or Proper to ALL CAPS? Don Excel Worksheet Functions 2 November 5th 06 08:57 PM
How do I change the case from all caps to proper for names I have in columns E, F, G? duugg Excel Discussion (Misc queries) 22 April 26th 06 01:25 PM
How do I change a spreadsheet from all caps to "Proper" dumbfounded Excel Discussion (Misc queries) 9 November 30th 04 08:22 PM


All times are GMT +1. The time now is 03:21 PM.

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"