Change all caps to lower case except the first letter.

Xirom431

Board Regular
Joined
Dec 2, 2010
Messages
102
Hi,

How do I change everything in my B column from all caps to lower case except the first letter of each word. The B column contains VLOOKUP formula also. Thanks.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
=left(b2)&lower(right(b2,len(b2)-1))

EDIT - I thought you only wanted to capitalise the first letter in the cell. For the first of each word, use VOG's suggestions.
 
Upvote 0
If this is the same lookup as earlier, try changing it to

=IF(ISNA(VLOOKUP(F3,'Device List'!E2:F814,2,FALSE)),"",PROPER(VLOOKUP(F3,'Device List'!E2:F814,2,FALSE)))
 
Upvote 0
Note that this will replace formulas with values.

Try selecting the range then running the macro

Code:
Sub ToProper()
Dim c As Range
For Each c In Selection
    c.Value = StrConv(c.Value, vbProperCase)
Next c
End Sub
 
Upvote 0
Good Afternoon

Using Excel 2013

How would the formula change if I wanted to only use Proper function if the cell contains more than 3 Characters??
 
Upvote 0

Forum statistics

Threads
1,214,384
Messages
6,119,201
Members
448,874
Latest member
Lancelots

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top