CAPITALISE GLOBALLY
Hi again,
Put this in a module
Sub mersible()
Set myrange = ActiveSheet.UsedRange
On Error Resume Next
For Each c In myrange
c.Value = UCase(c.Value)
Next
End Sub
Mike
"Prasad Gopinath" wrote:
I have a worksheet typed in upper and lower case. Is there a command I could
use to globally change it to UPPER CASE?
Prasad Gopinath
|