|
| ||||||||||
| Tags: capitalize, ebay, excel, first letter |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How to capitalize first letter of every word in Excel
I have created an Excel file in which the hundred of names are listed. I want to make the first letter of every word in the file in capital form. It would take a considerable time to manually navigate each and every word in the file and change the first letter of the word to uppercase. Can anyone provide me the macro code so that I can easily capitalize the first letter of every word in excel ? thanks.... |
|
#2
| ||||
| ||||
| Re: How to capitalize first letter of every word in Excel
Here's your required macro code - Code: Sub Proper_Case() ' 'This will make the first letter of the text within any selection of 'cells uppercase. ' For Each x In Selection x.Value = Application.Proper(x.Value) Next End Sub Note - This macro works on any selection of cells in columns, rows, or a combination of the two. |
|
#3
| ||||
| ||||
| Re: How to capitalize first letter of every word in Excel
Create an extra (temporary) column, and use the PROPER function to convert your existing text. Next, Copy and Paste Special - Paste Values over the original column and delete the temporary column. |
|
#4
| ||||
| ||||
| Re: How to capitalize first letter of every word in Excel
There are two ways you can do this -
|
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to capitalize first letter of every word in Excel" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Excel vlookup word strings | Brian.Hicks | MS Office Support | 1 | 13-03-2012 03:21 AM |
| Use of IPad for word/excel | McKayla | Portable Devices | 4 | 16-06-2010 04:58 PM |
| How to capitalize letter in mail | Wenro | Technology & Internet | 6 | 30-05-2010 12:05 AM |
| Formula to count the occurrences of specific letter in excel | Mithun Seth | Windows Software | 5 | 09-01-2010 12:03 PM |
| Connecting between Excel and Word | Windowed | Windows Software | 5 | 30-12-2009 09:55 AM |