Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 127
Default Caps formular please help

I have this "dog, cat, mice"

I want to achieve this Dog, Cat, Mice.

All help appreciated.

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,358
Default Caps formular please help

A1: dog, cat, mice
A2: =PROPER(A1)
--
John C


"Yossy" wrote:

I have this "dog, cat, mice"

I want to achieve this Dog, Cat, Mice.

All help appreciated.

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Caps formular please help

If that is in A1, then put this formula in B1:

=PROPER(A1)

Select B1 again and <copy it, then Edit | Paste Special | Values
(check) | OK then <Enter. Then just <copy <paste it over the
original, and delete B1.

(Not quite as easy as Word !!)

Hope this helps.

Pete

On Jul 25, 8:58*pm, Yossy wrote:
I have this "dog, cat, mice"

I want to achieve this Dog, Cat, Mice.

All help appreciated.

Thanks


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default Caps formular please help

If you have a larger data set you might want to use a macro

Sub PropCase()
Application.DisplayAlerts = False
Dim R As Range
For Each R In Selection.Cells
If R.HasFormula Then
R.Formula = "=PROPER(" & Mid(R.Formula, 2) & ")"
Else
R.Value = Application.Proper(R.Value)
End If
Next
Application.DisplayAlerts = True
End Sub




http://www.mvps.org/dmcritchie/excel/install.htm

--


Regards,


Peo Sjoblom

"Yossy" wrote in message
...
I have this "dog, cat, mice"

I want to achieve this Dog, Cat, Mice.

All help appreciated.

Thanks



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 127
Default Caps formular please help

thanks to all. i appreciate it.

"Pete_UK" wrote:

If that is in A1, then put this formula in B1:

=PROPER(A1)

Select B1 again and <copy it, then Edit | Paste Special | Values
(check) | OK then <Enter. Then just <copy <paste it over the
original, and delete B1.

(Not quite as easy as Word !!)

Hope this helps.

Pete

On Jul 25, 8:58 pm, Yossy wrote:
I have this "dog, cat, mice"

I want to achieve this Dog, Cat, Mice.

All help appreciated.

Thanks





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Caps formular please help

You're welcome - appreciate the feedback.

Pete

On Jul 25, 9:10*pm, Yossy wrote:
thanks to all. i appreciate it.



"Pete_UK" wrote:
If that is in A1, then put this formula in B1:


=PROPER(A1)


Select B1 again and <copy it, then Edit | Paste Special | Values
(check) | OK then <Enter. Then just <copy <paste it over the
original, and delete B1.


(Not quite as easy as Word !!)


Hope this helps.


Pete


On Jul 25, 8:58 pm, Yossy wrote:
I have this "dog, cat, mice"


I want to achieve this Dog, Cat, Mice.


All help appreciated.


Thanks- Hide quoted text -


- Show quoted text -


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
formular Gee Setting up and Configuration of Excel 0 April 15th 08 03:10 PM
fix all caps text to first letter caps MBartine Excel Discussion (Misc queries) 1 August 8th 06 03:02 AM
How to change ALL CAPS to Initial Caps only? Robert Judge Excel Worksheet Functions 5 September 24th 05 11:14 PM
How can I convert all Caps to first letter caps in Excel? Fenljp26 Excel Worksheet Functions 5 June 30th 05 11:35 AM
excel sheet all caps and needs to be only the first letter caps.. kroberts Excel Discussion (Misc queries) 1 March 7th 05 02:44 PM


All times are GMT +1. The time now is 04:48 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"