Skip to main content

How to convert all caps to only first cap in selected range in Excel?

Supposing you got a worksheet with all names are capitalized in a list, how to convert them to only make the first letter of each word capitalized? This article provides you three methods to deal with this problem.

Convert all caps to only make the first letter of each word cap with formula
Convert all caps to only make the first letter of each word cap with VBA code
Convert all caps to only make the first letter of each word cap in bulk with Kutools for Excel


Convert all caps to only make the first letter of each word cap with formula

You can convert all caps to only first cap in a list with formula. Please do as follows.

1. Select a blank cell (says cell C2) for locating the converted result, and enter formula =PROPER(B2) into the formula bar, and then press the Enter key.

You can see the capitalized name is converted to proper case (first cap) immediately in the help column.

2. Keep selecting the cell C2, drag the Fill Handle down to the list until it reaches the cell you need to convert the name case.

Note: In the formula, please change the cell reference based on your list.


Easily change case of texts in selected range in Excel

Kutools for Excel's Change Case utility helps you easily change case of texts in selected range in Excel. as the below demo shown.
Download and try it now! (30-day free trail)


Convert all caps to only make the first letter of each word cap with VBA code

Besides, you can run the following VBA code to convert all capitalized names to only first cap in a list.

1. Press Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Application window.

2. In the Microsoft Visual Basic for Application window, click Insert > Module, and then copy and paste below VBA code into the Module window.

VBA code: Convert all caps to only first cap

Sub Proper_Case()
	Dim xRg As Range
	Dim xCell As Range
	Dim xAddress As String
	Dim xUpdate As Boolean
	On Error Resume Next
	xAddress                    = Application.ActiveWindow.RangeSelection.Address
	Set xRg                     = Application.InputBox("Please select a range", "Kutools for Excel", xAddress, , , , , 8)
	Set xRg                     = Application.Intersect(xRg, ActiveSheet.UsedRange)
	If xRg Is Nothing Then Exit Sub
		xUpdate                    = Application.ScreenUpdating
		Application.ScreenUpdating = False
		For Each xCell In xRg.Cells
			If xCell.HasFormula = False Then
				xCell.Value = Application.WorksheetFunction.Proper(xCell.Value)
			End If
		Next
		Application.ScreenUpdating = xUpdate
	End Sub

3. Click the F5 key or click the Run button to run this code. In the popping up Kutools for Excel dialog box, select the range you want to convert all caps to only first cap, and then click the OK button.

Then all capitalized names in selected range are converted to only first capital names immediately.


Convert all caps to only make the first letter of each word cap in bulk with Kutools for Excel

This section shows you the Change Case utility of Kutools for Excel to convert all caps to only first cap in bulk with several clicks only.

Before applying Kutools for Excel, please download and install it firstly.

1. Select the list you need to convert the case, and then click Kutools > Text > Change Case. See screenshot:

2. In the Change Case dialog box, please select the Proper Case option, and then click the OK button.

Then all capitalized names in selected list are converted to proper case at once.

  If you want to have a free trial (30-day) of this utility, please click to download it, and then go to apply the operation according above steps.

Best Office Productivity Tools

Supports Office/Excel 2007-2021 and 365  |  Available in 44 Languages  |  Easy to Uninstall Completely

Popular Features: Find/Highlight/Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns     Move Columns   |   Unhide Columns   |   Compare Columns to Select Same & Different Cells ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need Is Just A Click Away...

Supercharge Your Excel Skills: Experience Efficiency Like Never Before with Kutools for Excel  (Full-Featured 30-Day Free Trial)

kte tab 201905

60-Day Unconditional Money-Back GuaranteeRead More... Free Download... Purchase... 

Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day! (Full-Featured 30-Day Free Trial)
60-Day Unconditional Money-Back GuaranteeRead More... Free Download... Purchase... 
 
Comments (0)
No ratings yet. Be the first to rate!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations