Changing the Default Paste Mode

Written by Allen Wyatt (last updated April 20, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


12

Avner notes that when he copies information from an external source, the default "paste" is to match the origin's format. But 99% (it is probably 99.99%) of the time, he wants to use the destination worksheet's format, so he needs to change the paste option to "Destination" format. Avner wonders if there is a way to change the default paste format to match the destination format.

Yes, there is a way to change the default using macros. However, you may want to consider a non-macro way, as well. In order to take this approach, the cleanest approach would be to add the desired paste mode to the Quick Access Toolbar. Follow these steps:

  1. Display the Excel Options dialog box. (In Excel 2007 click the Office button and then click Excel Options. In Excel 2010 or a later version display the File tab of the ribbon and then click Options.)
  2. At the left side of the dialog box click Customize (Excel 2007) or Quick Access Toolbar (later versions of Excel). (See Figure 1.)
  3. Figure 1. The Quick Access Toolbar option in the Excel Options dialog box.

  4. Using the Choose Commands From drop-down list, choose All Commands.
  5. Scroll through the Commands list until you find "Paste and Match Destination Formatting" option. Select the command by clicking on it.
  6. Click the Add button. The command moves to the right side of the dialog box.
  7. Click OK to close the Excel Options dialog box.

Now when you want to paste, you can simply click on the newly added tool and you will have the desired effect in your worksheet.

If you want to take the macro route, you can create a very short macro like the following:

Sub PasteMyWay()
    On Error Resume Next
    ActiveCell.PasteSpecial Paste:=xlPasteValues
End Sub

You can modify the value of the Paste parameter to be something different, if you find a different pasting mode is better for your purposes. Here are the Excel docs that explain the modes available:

https://docs.microsoft.com/en-us/office/vba/api/excel.xlpastetype

Once your macro is set up, you can replace the regular Ctrl+V command by following these steps:

  1. Press Alt+F8. Excel displays the Macro dialog box, which includes a list of your defined macros. (Your newly created macro should be among them.)
  2. Select the PasteMyWay macro.
  3. Click on Options. Excel displays the Macro Options dialog box, and the insertion point should be blinking in the box under the Shortcut Key heading. (See Figure 2.)
  4. Figure 2. The Macro Options dialog box.

  5. Press v (a lowercase "v"). This indicates that you want the macro assigned to the Ctrl+V shortcut key.
  6. Click on OK.
  7. Click on Cancel to close the Macro dialog box.

Now whenever you press Ctrl+V, your macro is executed, and the paste mode matches whatever you specified in the macro.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13669) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Adding the Set Print Area Tool

Spend a lot of time defining print areas in your workbooks? You might benefit by adding a Set Print Area tool that makes ...

Discover More

Fast AutoFill

Want to fill a long column with predictive data? It's easy to do by using AutoFill and a double-click of the mouse.

Discover More

Positioning Graphics Evenly

If you have some graphics inserted in your document, you may want to adjust the horizontal space between those graphics. ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Switching Editing Location

Excel allows you to edit the contents of a cell in two places--"the cell itself or in the Formula bar. If you want to ...

Discover More

Deleting Everything Up to a Character Sequence

Sometimes you have too much information in a cell and you need to "pare down" what is there to get to the info you really ...

Discover More

Concatenating Ranges of Cells

Putting the contents of two cells together is easy. Putting together the contents of lots of cells is more involved, as ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 6 - 0?

2022-11-17 11:08:30

Marc-Olivier Malépart

Wow... thanks this site have helped me quite often in my new position. I just wanted to take a second to express my gratitude. Thoses scripts rock!


2021-12-27 10:28:12

J. Woolley

For the Quick Access Toolbar, it would be better to choose "Paste Values" or "Paste Formulas" instead of "Paste and Match Destination Formatting." The latter did not work properly in my testing. Note "Paste Formulas" includes constant numeric, date, logical, and text "Values" as well as cell "Formulas."
Also, the Tip's macro probably should use xlPasteFormulas instead of xlPasteValues.


2021-12-26 11:25:29

J. Woolley

The macro MUST be run using a keyboard shortcut as described in the Tip. For the shortcut key (step 4), press Shift+V (upper case) instead of v (lower case). This makes the macro's keyboard shortcut Ctrl+Shift+V, preserving Ctrl+V for pasting in the usual way.
NOTE: The macro only works when pasting something copied from within Excel (or certain Office applications). It will not paste an item that was copied to the clipboard from another application.
If you want a general purpose way to paste values (text without formatting), consider the Microsoft Store's PureText app. See http://stevemiller.net/PureText/


2021-12-25 12:51:12

Daniel McGowan

I'm using excel/microsoft 365 for business on my desktop.

"Paste and Match Destination Formatting" didn't show up for me so i went the macro route.

But when I Ctrl+v nothing happens.

Any advice?


2021-02-14 03:29:13

stan

macro does nothing unless you are inside the cell in which case it normally just does match formatting anyways


2020-08-13 08:31:55

Philip

Macro Doesnt work for me on 2016


2020-04-15 20:46:17

Marco

That's briliant. Thank you verry much.


2019-09-01 09:54:44

Peter Atherton

Harland J
2007 does not have this option, but you can add the paste special dialog to the QAT
Choose Office, Excel Options, Customize, Click the Drop box and choose commands not in the ribbon, Add the Paste Formatting, click OK.

(see Figure 1 below)

Figure 1. Customize QAT


2019-08-31 15:46:16

Ronmio

I have customized my QAT similarly. But, because of the limited space on the QAT, I just have have buttons for Paste Values, Paste Formatting, and Paste Formulas. I have the buttons side-by-side so that I can accomplish most common pasting scenarios (those three buttons give you six different combinations) with usually one or two quick clicks. I just wish there was a Paste Comments button for the QAT as I need that frequently. Microsoft, are you listening?


2019-08-31 15:37:54

Tom Watkins

Here: (see Figure 1 below)

Figure 1. 


2019-08-31 11:02:22

Harland Johnson

I like this tip. BUT, "Paste and Batch Destination Formatting" (step 4) does not appear on my list of All Commands (Excel 2007). See screenshot {fig}


2019-08-31 10:50:16

Harland Johnsonq

I like this tip. BUT, "Paste and Batch Destination Formatting" (step 4) does not appear on my list of All Commands (Excel 2007). See screenshot {fig}


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.