PC Review


Reply
Thread Tools Rate Thread

Change Lowercase or Proper to ALL CAPS

 
 
Don
Guest
Posts: n/a
 
      5th Nov 2006
How do I change all lowercase or Proper formatted cells to ALL CAPS?

Don


 
Reply With Quote
 
 
 
 
Tom Ogilvy
Guest
Posts: n/a
 
      5th Nov 2006
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" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> How do I change all lowercase or Proper formatted cells to ALL CAPS?
>
> Don
>



 
Reply With Quote
 
Don
Guest
Posts: n/a
 
      6th Nov 2006
Thanks Tom........and if needing to change it to "Proper"?

Don
"Tom Ogilvy" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> How do I change all lowercase or Proper formatted cells to ALL CAPS?
>>
>> Don
>>

>
>



 
Reply With Quote
 
Chip Pearson
Guest
Posts: n/a
 
      6th Nov 2006
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" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Thanks Tom........and if needing to change it to "Proper"?
>
> Don
> "Tom Ogilvy" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> 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" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> How do I change all lowercase or Proper formatted cells to ALL CAPS?
>>>
>>> Don
>>>

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I change from all caps to proper case? =?Utf-8?B?VG9tIElJSQ==?= Microsoft Excel Misc 5 30th May 2007 05:54 AM
Is there a way to change Lowercase or Proper to ALL CAPS? Don Microsoft Excel Worksheet Functions 2 5th Nov 2006 08:57 PM
How do I change the case from all caps to proper for names I have in columns E, F, G? duugg Microsoft Excel Misc 22 26th Apr 2006 01:25 PM
Anyone know a quick way to change CAPS text into lowercase? =?Utf-8?B?Sm9lIFA=?= Microsoft Word Document Management 7 21st May 2005 02:56 PM
change from all caps to lowercase? =?Utf-8?B?Ym9yaXMgdGhlIGdyZWVr?= Microsoft Word Document Management 4 1st Oct 2004 07:49 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:29 AM.