How to convert all words to CAPS

R

Rick Rothstein

Press Alt+F11 to go to the VBA editor, click Insert/Module from its menu bar
and then copy/paste this macro into the code window that appeared...

Sub UpperCaseText()
With ActiveSheet.UsedRange.SpecialCells(xlCellTypeConstants)
.Formula = UCase(.Formula)
End With
End Sub

Now, go to the worksheet you want to capitalize the text on, press Alt+F8 to
bring up the macro dialog box, select UpperCaseText from the list and then
click the Run button. If there are other worksheets you want to do this on,
activate the worksheet and then repeat the instructions from previous
sentence.
 
H

Héctor Miguel

hi, Christine !
how can I convert all normal text to all CAP text?

you might want to give a try to the following:

if available, try to change the font for your range/worksheet/workbook/style/...
(no other tricks/code/stuff/... needed) no matter if user types in lower/upper case...

this fonts shows text un uppercase:
- Castellar
- Engravers MT
- Felix Titling
- Stencil
- Technic (*versalles* type)

this font shows text in lowercase:
- Freshbot
- Poornut
- Pussycat

hth,
hector.
 

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