View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Irshad Alam Irshad Alam is offline
external usenet poster
 
Posts: 6
Default How to make First letter of the cell in capital letter

I have a sheet in which there are text matters.

I want to run a code, so that all the cells of the worksheet can be effected
to change the first letter of the cell into capital.

I was able to know with the web helps examples, by that I can do it manually
with the cell reference one by one. the formula is as below :

=CONCATENATE(UPPER(LEFT(A1,1)),LOWER(RIGHT(A1,LEN( A1)-1)))

But I want to run in a code for the complete sheet, so once I run the code
and it can be effective for all the sheet

pls. advice

Irshad