'This two macros replace the strings in a range to their
'equivalent in upper-case or lower-case
'Copyright, Andrés Gonzalez, 2008
Sub MINUSMAYUS()
For Each celda In Selection
celda.Value = StrConv(celda.Value, vbUpperCase)
Next
End Sub
Sub MAYUSMINUS()
For Each celda In Selection
celda.Value = StrConv(celda.Value, vbLowerCase)
Next
End Sub
No comments:
Post a Comment