SHORT KEY

  • Thread starter adeel via OfficeKB.com
  • Start date
A

adeel via OfficeKB.com

Is there any Short Key for "Centre Align", "Left Align", "Right align".....if
not please tell me any macro design for these purpose.
 
G

Gary''s Student

If there is no ShortCut key for "center", it easy to make one:

Sub centre()
Selection.HorizontalAlignment = xlCenter
End Sub
and assign something like CNTRL-e to it.
 
Top