Convert text to all caps
Hi,
I hope there are no formula in the range, if there are this converts them to
values.
Mike
"dmoney" wrote:
Sub tst()
Dim rng As String
Range("b3").Select
Nex:
Do Until ActiveCell.Row = 2501
col = Mid(ActiveCell.Address, 2, 1)
rng = ActiveCell.Value
ActiveCell.Value = UCase(rng)
ActiveCell.Offset(1, 0).Activate
Loop
ActiveCell.Offset(-2498, 1).Activate
If col = "N" Then End
GoTo Nex
End Sub
"Patrick C. Simonds" wrote:
Is there any way to convert all text, in the range B3:M2500, to all capital
letters from within a macro?
|