R
Rich
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
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