Is there a way of selecting text and converting it all from lower to upper case?
Is there a way of selecting text and converting it all from lower to upper case?
TryFormula:![]()
=UPPER(A1)
Never use Merged Cells in Excel
If you want to convert selected cells you must use VBA:
Right click on sheet name -> View code
and paste:
Then select any range and run this macro.![]()
Public Sub ConvertUpper() Dim rngArea As Range For Each rngArea In Selection With rngArea .Value = Evaluate("IF(ISTEXT(" & .Address & "),UPPER(" & .Address & "),REPT(" & .Address & ",1))") End With Next rngArea End Sub
VBA solution here, converts text once enter is pressed
http://excel.tips.net/T002568_Forcin...Uppercase.html
Regards
Special-K
Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks