This code converts the text in the selected range to uppercase.
VBA Code:
Sub ConvertTextToUppercase()
Selection.Value = UCase(Selection.Value)
End Sub
This code converts the text in the selected range to uppercase.
VBA Code:
Sub ConvertTextToUppercase()
Selection.Value = UCase(Selection.Value)
End Sub