Change paste options

mkingrey

New Member
Joined
Nov 2, 2005
Messages
49
Is there a way, in excel, to set the program to automatically paste special? For instance, I use "paste value" a lot more than regular paste and it would save time to just be able to use CTRL + V rather than right click/paste special/values.
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Create it as a macro, then you can create a keyboard shortcut for it. I did that with the same function because I use it so much too.

Here is the VBA code that will take any highlighted range and copy paste special values over top of itself:
Code:
Sub MyPasteSpecialValues()
'   Copy and paste special - values, of selected range
'   Shortcut CTRL-SHFT-V

    Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    ActiveSheet.Paste
    Application.CutCopyMode = False

End Sub
Then go to Tools | Macro | Macros, highlight the "MyPasteSpecialValues" macro, select Options and set your keyboard shortcut.
 
Upvote 0

Forum statistics

Threads
1,222,436
Messages
6,166,020
Members
452,008
Latest member
Customlogoflipflops

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top