Share via

Short cut key for PASTE using destination format

Anonymous
2016-08-19T14:52:50+00:00

In Word 2010 I would like to create a shortcut key to paste text using destination format. In other words I don't want to go through 2 or 3 steps like clicking PASTE SPECIAL and then make another selection. I realize I could change the default to use destination format but if I did that, I would want to be to have a shortcut key  to use MERGE formatting. In short, I need a shortcut key to paste using an override of the default.

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Jay Freedman 207.7K Reputation points Volunteer Moderator
    2016-08-21T21:16:34+00:00

    You can install any or all of the following macros and assign shortcuts to them.

    Sub PasteDestinationFormat()

        Selection.PasteAndFormat wdFormatPlainText

    End Sub

    Sub PasteSourceFormat()

        Selection.PasteAndFormat wdFormatOriginalFormatting

    End Sub

    Sub PasteMergeFormat()

        Selection.PasteAndFormat wdFormatSurroundingFormattingWithEmphasis

    End Sub

    Was this answer helpful?

    0 comments No comments