Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
Is there a command to convert all text in a sheet to UpperCase in one shot? Or do I have to loop? Dim rng As Range, i As Integer, j As Integer set rng = Sheet1.UsedRange For i = 1 to rng.Rows.Count For j = 1 to rng.Columns.count rng(i,j) = ConvertToUpperCase(rng(i,j) '-- a udf, pseudo code whatever Next Next Thanks, Rich |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
HOW TO CHANGE EXISTING XL DATA SHEET TO ALL UPPERCASE TEXT | Excel Discussion (Misc queries) | |||
How can I convert entire columns of text to Uppercase in Excel? | Excel Worksheet Functions | |||
How can I convert the contents of a text selection from uppercase. | Excel Programming | |||
Uppercase in a whole sheet | Excel Worksheet Functions |