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.
--
Earl Kiosterud
mvpearl omitthisword at verizon period net
-------------------------------------------
"Vaughan" wrote in message
...
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
|