View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Ken Johnson Ken Johnson is offline
external usenet poster
 
Posts: 1,073
Default change first letter of a word for an entire column


lori12844 wrote:
I have a column of names and I would like to change just the 1st letter of
each name to upper case-how do I do that?


Hi lori,

with name in A1, try...

=UPPER(LEFT(A1,1)) & RIGHT(A1,LEN(A1)-1)

Ken Johnson