Skip to main content

How to change all caps to lowercase except first letter in Excel?

How could you change all capital letters to lowercase except the first letter of words in a column? In Excel, you can change all caps to lowercase except first letter of each word or all caps to lowercase except first letter of a sentence with following methods:

Change all caps to lowercase except first letter of each word with formula

Change all caps to lowercase except first letter of a sentence with formula

Change all caps to lowercase except first letter of each word / a sentence with Kutools for Excel


Change all caps to lowercase except first letter of each word with formula

If you want to change all uppercase to lowercase but keep the first letter of each word uppercase in a range of cells, the function of Proper in Excel may help you, please do as follows:

1. Enter the formula: =PROPER(A1) into a blank cell, C1 for instance, where you want to get the result, see screenshot:

doc change caps to lowercase but first 1

2. Then drag the fill handle down to the cells that you want to apply this formula, and every letter has been converted to lowercase except the first letter of each word, see screenshot:

doc change caps to lowercase but first 2


Change Case:(change text string to uppercase, lowercase, propercase and so on)

With the help of Kutools for Excel’s Change Case utility, you can quickly change the text strings to upper case, lower case, proper case, sentence case and so on. Click to download Kutools for Excel!

doc change to lowercase 12

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!


Change all caps to lowercase except first letter of a sentence with formula

To change all caps to lowercase but the first letter in a sentence, you can apply the following formula to solve it.

1. Enter the following formula into a blank cell, C1, for example, =UPPER(LEFT(A1,1))&LOWER(RIGHT(A1,LEN(A1)-1)) (A1 is the cell reference that you want to use), see screenshot:

doc change caps to lowercase but first 3

2. Then drag the fill handle down to the cells that you want to contain this formula, all capital text strings have been converted to lowercase except the first letter of each the string, see screenshot:

doc change caps to lowercase but first 4


Change all caps to lowercase except first letter of each word / a sentence with Kutools for Excel

Kutools for Excel’s Change Case utility can help you quickly convert all uppercase to lowercase, proper case, sentence case and toggle case as you need without any formulas.

Kutools for Excel : with more than 300 handy Excel add-ins, free to try with no limitation in 30 days.

After installing Kutools for Excel, please do as follows:

1. Select the text strings that you want to convert to lowercase but keep the first letter uppercase.

2. Then click Kutools > Text > Change Case, see screenshot:

3. In the Change Case dialog box:

(1.) Select Proper Case to change all caps to lowercase except the first letter of each word;

(2.) Select Sentence Case to change all caps to lowercase except the first letter only of each string.

doc change caps to lowercase but first 6

4. After choosing your desired option, then click Ok or Apply button, and you will get the result that you need.

Download and free trial Kutools for Excel Now !


Demo: Capitalize first letter of each word or first letter only with Kutools for Excel

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or 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  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
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

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


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!
Comments (5)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Many phrases require a mix of Proper and UPPER. For example, changing I LIVE IN THE USA => I live in the USA. Or a mix of lower and UPPER, MY CLIENT IS PROTECTED BY ERISA => my client is protected by ERISA. Is there a formula solution to this?
This comment was minimized by the moderator on the site
Hello,
If you're looking for a solution to convert text into a mix of lowercase and UPPER case based on certain words, maybe the following User Defined Function can help you:

Note: in the code, you just need to add the specific words into the exceptions = Array("USA", "ERISA") script that you want to keep uppercase.
Function CustomLowerCase(ByVal str As String) As String
    Dim word As Variant
    Dim result As String
    Dim exceptions() As Variant
    Dim tempWord As String
    ' List of words to remain in uppercase
    exceptions = Array("USA", "ERISA")
    For Each word In Split(str, " ")
        tempWord = LCase(word)
        For Each exception In exceptions
            If LCase(word) = LCase(exception) Then
                tempWord = UCase(word)
                Exit For
            End If
        Next exception
        result = result & " " & tempWord
    Next word
    CustomLowerCase = Trim(result)
End Function

After pasting the code, apply this formula:=CustomLowerCase(A1) to get the result you need.
Please have a try, hope it can help you!
This comment was minimized by the moderator on the site
But this doesn't explain how to do "small caps" where the first letter is larger cap and the rest of the letters are small caps.
This comment was minimized by the moderator on the site
Hello, The second method in this article provides the formual for converting the text strings to lowercase but the first letter is uppercase.=UPPER(LEFT(A1,1))&LOWER(RIGHT(A1,LEN(A1)-1))
Please check, thank you!
This comment was minimized by the moderator on the site
I have come this far but can not understand anything. I have forty blogs, about hundred pages to convert, but there is no information about how to doo full pages. Could you, or somebody, help out this old man-84 with his first computer, with some simple method how to do it!!!!????
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations