How to convert all words to CAPS

  • Thread starter Thread starter Christine
  • Start date Start date
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.
 
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.
 
Back
Top