Casing

  • Thread starter Thread starter PL
  • Start date Start date
P

PL

Hi

How do I make the 1st letter of each row Big Case, without doing it for each
cell?

Thanks
 
If you want to change, say, cell A2, go to another column, say B2, enter:

=UPPER(left(A2,1))&lower(right(len(A2)-1)

this will give upper case first character, lower case rest of cell
 
Row or cell?

If a cell, say A1, contains a single word like qwerty then in B1 enter
=PROPER(A1) to return Qwerty

Copy down column B

If the cell contains two words do you want just the first one Proper or both
of them

qwerty asdfg as Qwerty asdfg or Qwerty Asdfg


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top