Confine Cell to Proper Case

I

igbert

Is there a way to confine a cell for Proper Case without invoking a macro?

i.e.

If I type "enter account number" in cell A1, cell A1 (not any other cell)
should automatically change to "Enter Account Number" without running a macro.

Thanks.

Igbert
 
J

Jim Thomlinson

You can not change the input to become proper case but you can set another
cell to return the input in proper case. So if you input cell is A1 then in
B1 add the formula =Proper(A1).

Otherwise you can add a custom validation that would require the user to
enter the value in proper case but the users may not be too impressed when
the value they enter is not accepted and they need to retype it.
 
G

Gord Dibben

Using event code you can do it automatically in-cell as you enter.

Still uses VBA but you don't have to "invoke" the code.

Without some type of code you will have to use a helper cell with the PROPER
function.


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

Top