67

I use Excel to crunch numbers, so I usually don't want to copy the formatting along with the text. But this is the default. Is there a way to default to always match destination formatting when pasting into Excel?

music2myear
  • 49,799
Leftium
  • 9,335

11 Answers11

42

Can't set the default, but more convenient than fiddling with the paste options after each paste:

If you press the Backspace or F2 key before pasting text it will paste the text only, retaining the existing formatting.

source: http://appscout.pcmag.com/business-financial/272436-always-match-destination-formatting

I wonder why this works?

Leftium
  • 9,335
24

Simply double click on the cell first before pasting.

Ryo Saeba
  • 365
12

Try ALT+E+S+V+ENTER are the key strokes.

You could place a macro in your Personal personal excel workbook for pasting special, but you would not be able to undo the action after.

Firee
  • 1,910
10

Paste with ctrl+V then hit ctrl to open a one key menu with formatting options. By default the letter is V to set the pasted information to the destination cell's former/proper formatting.

A little weird that the ctrl+V and ctrl, then V have such disparate effects, but nonetheless to past and keep the destination formatting:

Copy cell or range of cells, paste to new locations using ctrl+V like you would to move the source formatting, then hit ctrl then V to select a change from the current source formatting into the destination formatting.

ctrl+V, then ctrl, then V. a much quicker method than point and click.

Giacomo1968
  • 58,727
9

In Excel 2013, use the ordinary Ctrl+V shortcut, then press Ctrl, then press M.

Matt
  • 158
5

I don't believe there is a way to change the default. However, what I've found very convenient is to add the "Paste Formulas" button (which will automatically keep the destination formatting) to the Quick Access Toolbar. To do this:

  • right click on the Quick Access Toolbar (the area in the top left with the Save, Undo and Redo buttons)
  • click "Customize Quick Access Toolbar..."
  • in the "Choose commands from:" dropdown menu, select "All Commands"
  • scroll down to "Paste Formulas" and double click on it
  • click OK

Now when you copy a cell or range, you can just use Alt+4 (assuming the new button is the fourth in the Quick Access Toolbar) to paste wherever you want and keep the destination formatting.

Scott M
  • 151
4

In addition to my answer above, there is one more way to achieve this.

Go to File > Options > Quick Access Toolbar.

Select "All Commands": enter image description here

Select "Paste and keep source formatting", then "Add" the same. You can also use the positioning arrows to position this option to the top. Advantage of this is, to paste the item you have copied, you can use the shortcut ALT+1 shortcut: (You don't have to use CTRL+V)

enter image description here

Mohan
  • 103
Firee
  • 1,910
2

This is another work-around I have found, if you can switch from Excel to Google Sheets:

  • Ctrl-Shift-V: Paste values only

Source: support.google.com/docs/answer/181110

I just double-checked, and Excel 2016 doesn't have this shortcut yet (by default).

Leftium
  • 9,335
1

According to the MSDN Excel PasteType reference, there is no "paste-matching-destination-theme", although you could paste just the values or formulas.

Similar to the instructions found here, you could add a macro to override the CTRL+V behaviour.

The steps are as follows (embellished slightly from the source page):

  1. press ALT+F11 to open the Microsoft Visual Basic for Applications window
  2. select Insert > Module from the menu, and paste the following code in the Module Window:

    Sub PasteAsValue()
        Selection.PasteSpecial Paste:=xlPasteValues
    End Sub
    

    NOTE: replace xlPasteValues with xlPasteFormulas if required

  3. (optional) rename the module (in the lower left Properties pane)
  4. close the window (click the "X" button at top right)
  5. press ALT+F8 to open the Macro dialog box
  6. select the "PasteAsValue" macro (or whatever name the macro created in step #2 has) and click the "Options..." button
  7. in the Macro Options dialog box, type "v" in the box, and (optionally) any description
  8. click the "OK" button to commit the changes and exit the Macro Options dialog box
  9. click the "Cancel" button to exit the Macro dialog box (and avoid running and any macros)
  10. save the Excel spreadsheet (Excel will throw a warning if the spreadsheet is not already an .xlsm "Macro-enabled spreadsheet" - click "No" to have Excel prompt for a different file name and file type to save as)
reb00tz
  • 11
1

Not so much an answer, as an extended comment.

First, Microsoft have gone to extraordinary lengths to remove any trace of 'Paste and match destination formatting' in 2019, for reasons best known to themselves. I have to go back to Excel 2010 to do this.

Second, it seems that this can't be done for some data. If you have a value which is meant to be an elapsed time ('27.16', for example, which you interpret as seconds), then you can't paste it into a cell which is custom-formatted as, say, [m]:ss.00 (ie. an elapsed time, with minutes, seconds, and 2 decimal places), because you haven't got a number of minutes and a colon in the source data. This also seems to be a general problem with the destination formatted as an elapsed time, whether or not you have a missing field in the source.

EML
  • 498
0

The paste forumula method works when one is copying and pasting into the same workbook. When copy to a different workbook, choose paste special and then choose CSV format.

CCKx
  • 121