Shortcuts for increase and decrease indents

G

Guest

Hi,

I currently increase and decrease indents by clicking the appropriate
buttons on the Formatting toolbar. I'd like to use a shortcut key instead.
I don't see one listed in the shortcuts help document. Am I missing
something, or am I asking too much?

Vaughan
 
E

Earl Kiosterud

Vaughan,

You're asking too much. Put the following macros in a module. Probably
best in Personal.xls. You can copy them from here and paste them into the
module.

Sub IndentIncrease()
On Error Resume Next
Selection.InsertIndent 1
End Sub

Sub IndentDecrease()
On Error Resume Next
Selection.InsertIndent -1
End Sub

Now assign your desired keyboard shortcuts to the macros with Tools -
Macro - Macros - Options.
 
G

Guest

To increase indents : Ctrl + Alt + Tab
To decrease indents : Ctrl +Alt + Shift + Tab
Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top