In MS Word one can use
ctrl + [ to reduce font size
ctrl + ] to increase font size
These do not work in MS Excel.
Following macro reduces any given font size by 2 units. Assign it to a shortcut key e.g. ctrl + p and you're set.
Sub reduceFont()
With Selection.Font
.Size = .Size - 2
End With
End Sub
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment