Excel – Keyboard shortcut to change case of text in cells in Excel 2010

keyboard shortcutsmicrosoft excelmicrosoft-excel-2010

Is there a keyboard shortcut in Excel for changing the case of selected cells (to lower or upper or whatever)?
All my searches lead me only to functions to do this. But that is not what I want.

Best Answer

Paul's suggestion is good or you can write your own macros and assign shortcut keys

 Sub makeUPPER()
  ActiveCell = UCase(ActiveCell)
 End Sub

 Sub makeLOWER()
  ActiveCell = LCase(ActiveCell)
 End Sub