Paste Values Shortcut For Excel

Paste Values Shortcut For Excel

After I create formulas in Excel, sometimes I want to lock in the results of those formulas, so I use the Paste Values command.

For example, I might use the RAND function to create a set of random numbers. After creating them, I don’t want them to change every time the sheet calculates.

Ribbon Commands

Here’s how I’d use the Ribbon commands to replace formulas with values.

  1. Select the cells that contain the formulas
  2. On the Ribbon’s Home tab, click the Copy command
  3. On the Ribbon’s Home tab, click the lower half of the Paste command, to open the list of options
  4. Click Paste Values
Ribbon commands to replace formulas with value
Ribbon commands to replace formulas with value

Old Commands

The steps are similar in earlier versions of Excel, but the commands are on the Standard toolbar, and the arrow is to the right of the Paste button.

PasteValues2003

Use Mouse Shortcut Menu

An even quicker way to paste values is by using a mouse shortcut:

  1. Point to the border of the selected range, and the pointer should change to a four-headed arrow.
  2. Press the right mouse button, and drag the cells slightly to the right.

    Use Mouse Shortcut Menu
    Use Mouse Shortcut Menu
  3. Keep pressing the right mouse button, and drag the cells back to their original location.
  4. Release the right mouse button and a shortcut menu will appear.
  5. Click on Copy Here as Values Only.

PasteValuesMouse02

The formulas are replaced by the values of their results.

Video: Mouse Shortcut Paste Values

This technique is a bit tough to explain, so if the written explanation didn’t make sense, here’s a very short video and I made.

____________________

31 thoughts on “Paste Values Shortcut For Excel”

  1. If you use the mouse, then putting PasteValues on the right-click menu works well, (you can miss out the “wiggle”). You can run the VBA code once and it stays in your menu. (I don’t know if this will work for Excel2007, it works in my Excel2000). I also have PasteSpecial and PasteFormats on that menu, but I can’t remember the button IDs.

    Sub AddPasteValues()
    Application.CommandBars(“Cell”).Controls.Add Type:=msoControlButton, ID _
    :=370, Before:=5
    Application.CommandBars(“Row”).Controls.Add Type:=msoControlButton, ID _
    :=370, Before:=5
    Application.CommandBars(“Column”).Controls.Add Type:=msoControlButton, ID _
    :=370, Before:=5
    End Sub

    I found this tip in a comment from “James” on DDoE:
    http://www.dailydoseofexcel.com/archives/2005/10/15/mouse-shortcuts/

  2. As in the video, double click on the right bottom corner of the cell to auto fill the column is new to me – and brilliant. Debra, the added value from the videos is excellent. Keep them coming, please.

    I have a Paste Values key on my personalized menus. Like the Paste buton, it goes grey when cutcopymode is off, meaning nothing to paste.

  3. 2 WAYS in OFFICE 2007

    FIRST
    Alt + H + V + V

    SECOND

    1. Select the cells that contain the formulas
    2. On the Ribbon’s Home tab, click the Copy command
    3. On the Ribbon’s Home tab, click the lower half of the Paste command, to open the list of options
    4. Click Paste Values

  4. This works as hell. Have assigned it to Ctrl Shift V.

    Makes it all very easy
    ctrl x = cut
    ctrl c = copy
    ctrl v = paste
    ctrl-shift v = paste values

    A simple macro; just ‘recorded’ by preperforming the Alt ESV trick…

    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
    :=False, Transpose:=False
    End Sub

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.