Sub test()
Dim c As Range, r As Range, i As Long
i = 100 ' set for my test only!
Set r = Range("A17:K" & i)
For Each c In r
c.Value = UCase(c.Value)
Next
End Sub
--
Regards,
Nigel
(E-Mail Removed)
"Roger Converse" <(E-Mail Removed)> wrote in message
news:8A0C8DDE-C2C7-4365-BD54-(E-Mail Removed)...
> Hello,
>
> How would I update a range of cells to all uppercase?
>
> My range is:
>
> r = Range("A17:K" & i)
>
> How could I create a loop or something that would change all cells in that
> range to uppercase?
>
> Thank you,
> Roger