proper

A

afdmello

just suppose a cell is having text in caps and I want to convert it to
proper.How can I do so with only one keystroke: a macro maybe.

Now I do it like this:
select a blank cell use the proper formula and get the answer in the blank
cell.Then copy>paste special >values only to the required cell.Then got the
answer cell and clear contents.

AFD
 
G

Guest

Enter this into a macro:

Sub changeToProper()
ActiveCell.Value = Excel.WorksheetFunction.Proper(ActiveCell.Value)
End Sub

Then, on your spreadsheet, go Tools->Macro->Macros, select "changeToProper",
select "Options" and enter the keyboard shortcut you would like.
 
A

afdmello

David:

Thank u.

I am relatively new to macros.I did as follows

I went to VB editor >insert module>pasted what you sent and closed VB
editor,then followed ur instructions for the short cut key.
Did I do it right.David can u direct me to some site to learn macros

AFD
 

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