VBA Code to Converting text case Lowercase & Uppercase


 Sub Uppercase()

 For Each Cell In Selection 

If Not Cell.HasFormula 

Then Cell.Value = UCase(Cell.Value) 

End If Next Cell 

End Sub.



Sub Lowercase() 

For Each Cell In Selection

 If Not Cell.HasFormula 

Then Cell.Value = LCase(Cell.Value) 

End If Next Cell 

End Sub.

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.