Uppercase Letter After Each Space

christian2016

Board Regular
Joined
Oct 6, 2016
Messages
123
Hi Guys,

Need help with a VBA to uppercase each letter after a space.
Also including the first letter in the string.

Example:
hello my name is bob smith

VBA code will convert the string to:
Hello My Name Is Bob Smith

This will be done on all cells in a range starting in Cell E3 up until the last used cell with text.

Any Help is greatly appreciated.

Thanks
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Here is a utility procedure I found that works on a range of cells.

Code:
Sub ProperMacro()


    Dim CaseRange As Range
    Dim CalcMode As Long
    Dim Cell As Range


    On Error Resume Next
    Set CaseRange = Intersect(Selection, _
        Selection.Cells.SpecialCells(xlCellTypeConstants, xlTextValues))
    On Error GoTo 0
    
    If CaseRange Is Nothing Then Exit Sub


        With Application
            CalcMode = .Calculation
            .Calculation = xlCalculationManual
            .ScreenUpdating = False
            .EnableEvents = False
        End With
    
        For Each Cell In CaseRange.Cells
            Cell.Value = StrConv(Cell.Value, vbProperCase)
        Next Cell
    
        With Application
            .ScreenUpdating = True
            .EnableEvents = True
            .Calculation = CalcMode
        End With
        
End Sub
 
Upvote 0
Hi,

if the texts are in A1:A2

Code:
Sub Main
for i = 1 to 2
    cells(i,2) = join(worksheetfunction.proper(split(cells(i,1)))
next i
End Sub

regards
 
Upvote 0
Thanks for the help.

I have changed the code as per below.

This works well.

Also how do i add in Uppercase after ' and - Is this possible


Code:
Sub test()

Dim Cell As Range
Dim CaseRange As Range


 LastRow = Cells(Rows.Count, "E").End(xlUp).Row
 
 Set Cell = Range("E3:E" & LastRow)
  Set CaseRange = Range("E3:E" & LastRow)
  




   For Each Cell In CaseRange.Cells
            Cell.Value = StrConv(Cell.Value, vbProperCase)
        Next Cell


End Sub
 
Last edited:
Upvote 0
Try this as you requested,

Code:
[COLOR=#0000cd]Sub SetProper()
[/COLOR][COLOR=#d3d3d3]'by lhartono[/COLOR][COLOR=#0000cd]
Dim rngString   As Range
Dim cell        As Range

With Application
    .ScreenUpdating = False
    .EnableEvents = False
    .Calculation = xlCalculationManual
End With

Set rngString = Sheets("YourSheetName").Range("E3", "E" & Range("E" & Rows.Count).End(xlUp).Row)

For Each cell In rngString.Cells
    cell = VBA.StrConv(cell, vbProperCase)
Next

Set rngString = Nothing

With Application
    .Calculation = xlCalculationAutomatic
    .EnableEvents = True
    .ScreenUpdating = True
End With

End Sub[/COLOR][COLOR=#0000cd][/COLOR][COLOR=#0000cd][/COLOR]
 
Upvote 0

Forum statistics

Threads
1,216,119
Messages
6,128,947
Members
449,480
Latest member
yesitisasport

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