sunnytahir
Programmer
- May 11, 2003
- 32
i want to change the value of selection (some rows & columns) in uppercase in excel.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub UpperCaseSelection()
Dim c As Range
Application.ScreenUpdating = False
For Each c In Selection
c.Value = UCase(c.Value)
Next c
Application.ScreenUpdating = True
End Sub