I would like to make the "paste unformatted" command available to a keyboard
shortcut.
Does anyone know the easiest way to do this?
If you click the Microsoft Office button in Word, you will find an
"Word options" button at the bottom. Under "Advanced", you can specify
how default paste options should be done.
If you still want a separate shortcut key for it, you will have to use
a Macro as the option is not available among the common commands.
Macro tools can be found under the 'Developer' tab. If you don't see
that tab, click the Microsoft Office button in Word, select "Word
options" and under "Popular" select "Show developer tab in the
ribbon".
Click the "Macros" button on the developer tab. Enter a name for the
macro, e.g. "PasteWithoutFormatting", and click create. You will get
something like this:
<-- code start -->
Sub PasteWithoutFormatting()
'
' PasteWithoutFormatting Macro
'
'
End Sub
<-- code end -->
Now change that into the following:
<-- code start -->
Sub PasteWithoutFormatting()
Selection.PasteAndFormat (wdFormatPlainText)
End Sub
<-- code end -->
Now all you have to do is assign a hotkey to the macro. This can be
done by clicking the Microsoft Office button, followed by "Word
options", then select 'Customize' and at the button of that screen,
select 'Customize...' next to keyboard shortcuts. In the category
section, you have to select macros and then pick your macro
(PasteWithoutFormatting) from the list and assign it a hotkey.
HTH
Yves