Change Case

  • Thread starter Thread starter Gary Ballance
  • Start date Start date
G

Gary Ballance

I have the same question. Is there an easy way to change
data in an entire spreadsheet from lower to uppercase?
 
try
Sub ucaseall()
For Each c In ActiveSheet.UsedRange
c.Value = UCase(c)
Next
End Sub
 
Back
Top