+ Reply to Thread
Results 1 to 10 of 10

How do I make PASTE VALUES the default Ctrl+V function in 2010?

  1. #1
    Registered User
    Join Date
    03-15-2011
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010
    Posts
    1

    Question How do I make PASTE VALUES the default Ctrl+V function in 2010?

    Hey all.

    Excel 2010 is *extremely* annoying. In fact, I hate it.

    Every time I try to CTRL+C to copy text from one spreadsheet and paste it into another spreadsheets column with CTRL+V, it's copying all the stupid formulas and junk with it, leaving the box with an N/A in it unless I manually move the mouse of to Paste and choose "Paste Values"

    Who's the incredible genius at Microsoft that made copy formula the default paste? What a bunch of idiots.

    How can I change the default paste function to be paste VALUES and not paste all the other junk?

    Why do they mess with things like this, I just don't get it...

    Any speedy answers would be great

    Thanks in advance guys


    -An Excel 2010 hater.

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: How do I make PASTE VALUES the default Ctrl+V function in 2010?

    Unfortunately, you can't. At least not with a push of a button. You can record a macro which pastes values and save that with the shortcut key CNTRL + V. Then, if you have macros enabled, it'll default to that. Does that help?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    09-30-2015
    Location
    US
    MS-Off Ver
    2013
    Posts
    3

    Re: How do I make PASTE VALUES the default Ctrl+V function in 2010?

    "Unfortunately, you can't."

    Au contraire mon frère!!!

    Create a macro:
    Sub PasteValues()
    Selection.PasteSpecial Paste:=xlPasteValues
    End Sub

    Then, in the ThisWorkbook code,

    Private Sub Workbook_Activate()
    Application.OnKey "^v", "PasteValues"
    End Sub

    (or add the application.onkey line to the existing Workbook_Activate function)

  4. #4
    Registered User
    Join Date
    12-17-2013
    Location
    Greater NYC Area
    MS-Off Ver
    Excel 2010
    Posts
    84

    Re: How do I make PASTE VALUES the default Ctrl+V function in 2010?

    You could add "Paste Values" to your quick access toolbar and use that instead of Ctrl V.

  5. #5
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: How do I make PASTE VALUES the default Ctrl+V function in 2010?

    @ FireMedic, you didn't read my whole post.

    As Duckdown only posted once and that was 4 years ago, I'm guessing he's not monitoring the board at this point.

  6. #6
    Registered User
    Join Date
    09-30-2015
    Location
    US
    MS-Off Ver
    2013
    Posts
    3
    Quote Originally Posted by IronCladRooster View Post
    You could add "Paste Values" to your quick access toolbar and use that instead of Ctrl V.
    I do it that way to specifically prevent users from pasting "all" in the workbooks that I develop. I also disable the "cut" functions.

  7. #7
    Registered User
    Join Date
    09-30-2015
    Location
    US
    MS-Off Ver
    2013
    Posts
    3
    Quote Originally Posted by ChemistB View Post
    @ FireMedic, you didn't read my whole post.

    As Duckdown only posted once and that was 4 years ago, I'm guessing he's not monitoring the board at this point.
    You are correct....sorry!

  8. #8
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: How do I make PASTE VALUES the default Ctrl+V function in 2010?

    As long as we're hijacking this thread, is there an advantage, Firemedic, to putting the code in "thisworkbook" to make the macro respond to CNTRL V as opposed to just going to Macros window>Options and entering the shortcut there?

  9. #9
    Registered User
    Join Date
    01-24-2013
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010
    Posts
    1

    Re: How do I make PASTE VALUES the default Ctrl+V function in 2010?

    I have a series for worksheets that have very specific report-presentation formatting. The issue I've been trying to resolve is that when my team colleagues are moving/modifying data, the often use the fastest mechanism available, typically Ctrl+C, Ctrl+V ... which frequently blows out the report-presentation formatting. Freaking huge amount of work to have to constantly reformat to restore the desired effect.

    This would be precisely *THE* solution that I've been looking for as well, except that, at least in MS EXCEL 2013, a copy/paste with this macro in-place, "undo" is not available. And, inevitably, the undo will be needed from time to time.

    Is there a solution where Ctrl-V / undo remains available?

  10. #10
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,944

    Re: How do I make PASTE VALUES the default Ctrl+V function in 2010?

    mngreen welcome to the forum

    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1