To change text in a selected range to lower case use this code.
Sub LowerCase()Dim cell As RangeFor Each cell In Selection.CellsIf cell.HasFormula = False Thencell = LCase(cell)End IfNextEnd Sub
Post a Comment
No comments:
Post a Comment