I would write some short macro. For example,
Sub Lower2Upper()
Dim rng As Range
Set rng = Range("A6:B11999")
rng.Value = Evaluate("=if(upper(" & rng.Address & ")<>"""", upper(" & _
rng.Address & "),"""")")
End Sub
This would take some time, but only you need is just to wait to be done.
Keiji
ordnance1 wrote:
> My original post seems to have disappeared so here is a repeat.
>
> I have to clean up a spreadsheet by converting the text in cells
> A6:B11999 to uppercase text. These cells contain text only. Is there a
> quick way to accomplish this?
|