PC Review


Reply
Thread Tools Rate Thread

Re: The text case function PROPER is not working

 
 
Andy Brown
Guest
Posts: n/a
 
      21st Aug 2003
Try pressing the key below Esc while holding down CTRL. This toggles show
formulas/results.

HTH,
Andy


 
Reply With Quote
 
 
 
 
Danny
Guest
Posts: n/a
 
      21st Aug 2003
Try this macro:
Copy the macro below
Press Alt+f11
A module will appear
Paste the macro below
Highlight range of cells you want to convert to proper case
run macro

Sub Proper_CASE()
Dim Rng As Range
For Each Rng In Selection.Cells
If Rng.HasFormula = False Then
Rng.Value = StrConv(Rng.Value, vbProperCase)
End If
Next Rng
End Sub


>-----Original Message-----
>Try pressing the key below Esc while holding down CTRL.

This toggles show
>formulas/results.
>
>HTH,
>Andy
>
>
>.
>

 
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
what is the function for changing text to proper case/title case? =?Utf-8?B?U2Fic191aw==?= Microsoft Access 1 16th Jun 2005 08:26 PM
how to change upper case to proper case =?Utf-8?B?QWRpYg==?= Microsoft Access 3 11th Feb 2005 01:30 PM
Convert Name field from Upper Case to Proper Case Jeff R Microsoft Access Macros 1 25th Jun 2004 11:29 PM
Re: The text case function PROPER is not working Gord Dibben Microsoft Excel Worksheet Functions 0 22nd Aug 2003 12:47 AM
Converting upper case to proper case in Excel angela Microsoft Excel Misc 1 13th Aug 2003 03:55 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:10 PM.