Making First Letter Of A Text In Upper Case

  • Thread starter Thread starter arjcvg
  • Start date Start date
A

arjcvg

Hi Guys!

I just wanna ask, for example i have a text like this:

millar, donne

How will I make this like

Millar, Donne

Thanks for your usual help
 
a touch more complicated.....name in cell a7

=UPPER(LEFT(A7,1))&RIGHT(LEFT(A7,SEARCH(" ",A7)-1),SEARCH(" ",A7)-2)&
"&UPPER(LEFT(RIGHT(A7,(LEN(A7)-SEARCH(
",A7))),1))&RIGHT(A7,LEN(A7)-SEARCH(" ",A7)-1
 
One way
Sub makeproper()
For Each c In Selection
c.Value = Application.Proper(c)
Next
End Sub
 
Back
Top